GET
/
api
/
{accountId}
/
connections
[
  {
    "id": "1234567890",
    "type": "EVM",
    "status": "connected",
    "chainId": "1",
    "address": "0x1234567890123456789012345678901234567890",
    "lastSyncedAt": "2024-10-08T18:56:13.862Z",
    "createdAt": "2024-10-08T18:56:13.862Z",
    "updatedAt": "2024-10-08T18:56:13.862Z"
  }
]

Path Parameters

accountId
string
required

Account ID

Example:

"1234567890"

Response

200
application/json
Retrieve the account connections
id
string
required

Connection ID

Example:

"1234567890"

type
string
required

Type of connection

Example:

"EVM"

status
enum<string>
required

Status of the connection

Available options:
connected,
disconnected
Example:

"connected"

chainId
string
required

Chain ID for the connection

Example:

"1"

address
string
required

Address associated with the connection

Example:

"0x1234567890123456789012345678901234567890"

createdAt
string
required

Date and time when the connection was created

Example:

"2024-10-08T18:56:13.862Z"

updatedAt
string
required

Date and time when the connection was last updated

Example:

"2024-10-08T18:56:13.862Z"

lastSyncedAt
string

Date and time of the last sync

Example:

"2024-10-08T18:56:13.862Z"