Skip to main content
GET
/
screening
/
trlink
/
customers
/
integration
/
{customerIntegrationId}
/
vasps
TypeScript
const response: Promise<FireblocksResponse<TRLinkAPIPagedResponse>> = fireblocks.tRLink.listTRLinkVasps(tRLinkApiListTRLinkVaspsRequest);
{
  "data": [
    {
      "id": "did:ethr:0x1234567890abcdef",
      "name": "ACME Virtual Assets",
      "legalName": "ACME Virtual Assets Corporation",
      "nationalIdentification": {
        "identifier": "123456789",
        "type": "LEI",
        "authority": "Financial Conduct Authority"
      },
      "geographicAddress": {
        "formattedAddress": "123 Main Street, New York, NY 10001, USA",
        "country": "USA",
        "streetName": "Main Street",
        "buildingNumber": "123",
        "city": "New York",
        "postalCode": "10001"
      }
    }
  ],
  "paging": {
    "next": "eyJwYWdlIjoyLCJsaW1pdCI6MTAwfQ=="
  }
}

Documentation Index

Fetch the complete documentation index at: https://fireblocks-43c4b3ee-chore-add-cli.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

customerIntegrationId
string<uuid>
required

Customer integration unique identifier

Query Parameters

pageSize
integer
default:100

Number of results per page (max 100)

Required range: 1 <= x <= 100
pageCursor
string

Cursor for pagination (from previous response)

Response

VASPs retrieved successfully

Generic paginated response wrapper with cursor-based pagination

data
object[]
required

Array of result items

paging
object