List VASPs
Retrieves a paginated list of VASPs (Virtual Asset Service Providers) available through the partner integration. Supports cursor-based pagination.
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}/vaspsconst 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
Customer integration unique identifier
Query Parameters
Number of results per page (max 100)
Required range:
1 <= x <= 100Cursor for pagination (from previous response)
Was this page helpful?
Previous
Get VASP by IDRetrieves detailed information about a specific VASP by its unique identifier. Returns VASP details including public key if available.
Next
⌘I
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}/vaspsconst 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
}