Get VASP by ID
Retrieve detailed information about a specific VASP using its unique identifier.
Endpoint
GET https://api.trpcontinuum.com/trp/vasps/{vaspId}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
vaspId | string | Yes | Unique VASP identifier |
Headers
| Header | Value | Required |
|---|---|---|
x-api-key | {your-api-key} | Yes |
x-secret-key | {your-secret-key} | Yes |
Response
Success (200 OK)
{
"success": true,
"data": {
"id": "c8f61f62-1a20-41e9-9ac3-0ffb59bcf00e",
"name": "SecureWallet Inc",
"code": "SECWAL",
"website": "https://securewallet.com",
"trpInquiryEndpoint": "localhost:5001/trp/inquiry"
}
}
Error (404 Not Found)
{
"success": false,
"error": "VASP not found",
"code": "VASP_NOT_FOUND"
}
Example cURL
curl -X GET "{{baseUrl}}/trp/vasps/vasp_123456" \
-H "x-api-key: {your-api-key}" \
-H "x-secret-key: {your-secret-key}"
Use Cases
- Transaction Planning: Check VASP capabilities before transfers
- Compliance Verification: Verify VASP licensing and status
- Network Compatibility: Confirm supported networks and features
- Contact Information: Get compliance contact details
- API Integration: Obtain VASP's API endpoints