Skip to main content
GET
/
screening
/
trlink
/
customers
/
integration
/
{customerIntegrationId}
/
vasps
TypeScript
const response: Promise<FireblocksResponse<TRLinkAPIPagedResponse>> = fireblocks.tRLink.listTRLinkVasps(tRLinkApiListTRLinkVaspsRequest);
CompletableFuture<ApiResponse<TRLinkAPIPagedResponse>> response = fireblocks.tRLink().listTRLinkVasps(customerIntegrationId, pageSize, pageCursor);
response = fireblocks.t_r_link.list_t_r_link_vasps(customer_integration_id, page_size, page_cursor);
curl --request GET \
  --url https://api.fireblocks.io/v1/screening/trlink/customers/integration/{customerIntegrationId}/vasps
const options = {method: 'GET'};

fetch('https://api.fireblocks.io/v1/screening/trlink/customers/integration/{customerIntegrationId}/vasps', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.fireblocks.io/v1/screening/trlink/customers/integration/{customerIntegrationId}/vasps",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.fireblocks.io/v1/screening/trlink/customers/integration/{customerIntegrationId}/vasps"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
require 'uri'
require 'net/http'

url = URI("https://api.fireblocks.io/v1/screening/trlink/customers/integration/{customerIntegrationId}/vasps")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "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=="
  }
}
{
  "message": "<string>",
  "code": 123
}

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