List VASPs

GET /api/v2/directory/vasps

This endpoint returns the list of VASP records that can be sorted and paginated.

Query Parameters

Name
Type
Description
Required

page

integer

The page number to view from the list. Defaults to 1 if not provided.

False

size

integer

The size of each page. Defaults to 50 if not provided.

False

sort

string

Sort the list based on the provided field name. e.g. vasp_id (asc order) -vasp_id (desc order)

False

Response

{
  "status": "success",
  "data": {
    "items": [
      {
        "vasp_id": "ABCXYZ",
        "name_legal": "Sample Ltd",
        "name_business": "Sample Ltdp",
        "address_country_code": "UK",
        "address_street_no": "32",
        "address_street_name": "Old Jewry",
        "address_city": "London",
        "address_region": "South-east England",
        "address_postcode": "EC2R 2DN",
        "website": "www.sample.io",
        "summary": "This firm is registered for certain cryptoasset activities. For more information, check out [ ]",
        "supported_protocols": [
          "flow"
        ],
        "national_id_type_code": "LEIX",
        "national_id": "3523524",
        "national_id_issue_country": null,
        "national_id_registration_authority": "RA999999"
      }
    ], 
    "pagination": {
      "total": 1,
      "size": 50,
      "page": 1
    }
  },
  "message": "null"
}

Last updated