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>"
}
'
{
  "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"
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Body

application/json
name
string
required
type
object
required
utila
object
kraken
object
plaid
object
squads
object
coinbase
object
realms
object
safe
object
wise
object
hyperliquid
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,
squads,
coinbase,
realms,
wise,
safe,
hyperliquid
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 June 21, 2026