Skip to main content
GET
/
screening
/
trlink
/
customers
/
integration
/
{customerIntegrationId}
/
vasps
/
{vaspId}
TypeScript
const response: Promise<FireblocksResponse<TRLinkVaspDto>> = fireblocks.tRLink.getTRLinkVaspById(tRLinkApiGetTRLinkVaspByIdRequest);
CompletableFuture<ApiResponse<TRLinkVaspDto>> response = fireblocks.tRLink().getTRLinkVaspById(customerIntegrationId, vaspId);
response = fireblocks.t_r_link.get_t_r_link_vasp_by_id(customer_integration_id, vasp_id);
curl --request GET \
  --url https://api.fireblocks.io/v1/screening/trlink/customers/integration/{customerIntegrationId}/vasps/{vaspId}
const options = {method: 'GET'};

fetch('https://api.fireblocks.io/v1/screening/trlink/customers/integration/{customerIntegrationId}/vasps/{vaspId}', 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/{vaspId}",
  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/{vaspId}"

	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/{vaspId}")

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
{
  "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"
  },
  "publicKey": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...\n-----END PUBLIC KEY-----"
}
{
  "message": "<string>",
  "code": 123
}

Path Parameters

customerIntegrationId
string<uuid>
required

Customer integration unique identifier

vaspId
string
required

VASP unique identifier (DID format)

Response

VASP retrieved successfully

id
string
required

VASP unique identifier (DID format)

Example:

"did:ethr:0x1234567890abcdef"

name
string
required

VASP display name

Example:

"ACME Virtual Assets"

Legal entity name

Example:

"ACME Virtual Assets Corporation"

nationalIdentification
object
geographicAddress
object
publicKey
string | null

VASP public key for encryption

Example:

"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...\n-----END PUBLIC KEY-----"