Skip to main content
GET
/
external_wallets
cURL
curl --request GET \
  --url https://sandbox.onconsul.com/v1/external_wallets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "address": "<string>",
      "chain": "ethereum",
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "name": "<string>",
      "status": "<string>"
    }
  ],
  "next_cursor": "<string>"
}
Returns a paginated list of external crypto wallets.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_size
integer<int64>
cursor
string

Response

OK

data
object[]
required
next_cursor
string