Skip to main content
POST
/
v2
/
account-connections
Create account connection
curl --request POST \
  --url https://api.range.org/v2/account-connections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "type": "utila"
}
'
{
  "id": "conn_abc123",
  "name": "My Utila Account",
  "type": "utila",
  "public_data": {
    "public_key": "pk_abc123"
  },
  "created_at": "2026-01-01T00:00:00.000Z",
  "updated_at": "2026-01-01T00:00:00.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Body

application/json
name
string
required
type
object
required
utila
object
kraken
object
plaid
object

Response

200 - application/json
id
string
required
Example:

"conn_abc123"

name
string
required
Example:

"My Utila Account"

type
enum<string>
required
Available options:
utila,
kraken,
plaid
Example:

"utila"

public_data
object
required

Non-sensitive public metadata

Example:
{ "public_key": "pk_abc123" }
created_at
string<date-time>
required
Example:

"2026-01-01T00:00:00.000Z"

updated_at
string<date-time>
required
Example:

"2026-01-01T00:00:00.000Z"

Last modified on May 15, 2026