VerifyVASP
Search
⌃K

VASP List

get
http://<enclave-endpoint>
/v1/vasps
View the List of VASPs
This API returns the list of VASPs.
When a withdrawal is requested to a VASP, the VASP can call this API to find the vaspId (ID of the VASP) of the other VASP.
The list only includes the information of member VASPs of VerifyVASP alliance by default. If 'includesAll' field as true, a query parameter field, you can get the list of all the VASPs including non-alliance members.

Request

Query Parameters

Field Name
Data Type
Description
Example
includesAll
boolean
A flag deciding whether to view only the alliances using VerifyVASP protocol or all VASPs.
false

Responses

Response Body Examples
  • 200 OK
{
"vasps": [
{
"health": "DOWN",
"vaspId": "27372039731940770",
"vaspName": "A Exchange",
"legalName": "A Exchange",
"jurisdiction": "Singapore",
"isAlliance": true,
"country": "Singapore",
"licensedStatus": "Processing",
"vaspStatus": "VERIFIED-MEMBER",
"createdAt": "2021-09-27T01:48:38.000Z",
"updatedAt": "2021-11-09T07:31:54.000Z"
},
{
"health": "UP",
"vaspId": "27372039731940165",
"vaspName": "B Exchange",
"legalName": "B Exchange",
"jurisdiction": "Korea",
"isAlliance": true,
"country": "Korea",
"licensedStatus": null,
"vaspStatus": "VERIFIED-MEMBER",
"createdAt": "2021-09-27T01:48:38.000Z",
"updatedAt": "2022-01-13T15:27:50.000Z"
}
]
}

Payload

Field Name
Data Type
Required
Description
vasps
object
true
VASP Information
vasps.health
string
true
The health status of the VASP Enclave server
vasps.vaspId
string
true
VASP ID
vasps.vaspName
string
true
VASP Name/ Business Name
vasps.legalName
string
false
VASP Legal Name
vasps.jurisdiction
string
false
Jurisdiction of Incorporation (country or region)
vasps.isAlliance
boolean
false
VerifyVASP alliance or not
vasps.country
string
false
Country
vasps.licensedStatus
string
false
Status of the VA License
vasps.vaspStatus
string
true
VASP status on VerifyVASP. See explanation below.
vasps.createdAt
Date
true
The time at which VASP information was created. UTC ISO 8601 format.
vasps.updatedAt
Date
true
The time at which VASP information was updated. UTC ISO 8601 format.
  • In vasps.vaspStatus field, values as below can be used.
    • One of “VERIFIED-MEMBER”, ”VERIFIED”, and ”UNVERIFIED” values.
    • UNVERIFIED: Not registered yet.
    • VERIFIED: Registered but still waiting to be approved as an alliance. Or, approved as an alliance but have not installed the enclave server yet.
    • VERIFIED-MEMBER: Alliance whose enclave server is running normally and transactions are available.
Last modified 11mo ago