Skip to main content
GET
/
travelrule
/
vasps
cURL
curl --request GET \
  --url https://api.paxos.com/v2/travelrule/vasps \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "8e4b1c2d-9a3f-4e6b-b1d7-2c5a8f0e3b94",
      "name": "OKX"
    },
    {
      "id": "3d9a7c61-5e2b-48f0-9c4a-1b6e7d2f8a05",
      "name": "Robinhood (US)"
    }
  ],
  "next_page_cursor": "Cg5Sb2Jpbmhvb2QgKFVTKQ"
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Query Parameters

ids
string[]

Optionally filter by the vasps' IDs.

limit
integer<int32>

Number of results to return. Defaults to 100 if no limit is provided.

order
enum<string>

Determines whether the items are returned in ascending (ASC), or descending (DESC) order.

Available options:
DESC,
ASC
order_by
enum<string>

The specific method by which the returned results will be ordered.

Available options:
NAME
page_cursor
string

Optional: Cursor for getting the next page of results. When the number of items returned is fewer than the limit, there is currently no next page.

Optional: case-insensitive prefix match on the VASP name, for type-ahead lookup.

Response

200 - application/json

A successful response.

items
object[]

The VASPs matching the request, ordered by name (ascending by default).

next_page_cursor
string

Cursor for the next page of results, or empty when there are no more results.