Skip to main content
GET
/
screening
/
trlink
/
customers
/
integration
/
{customerIntegrationId}
/
assets
/
{assetId}
TypeScript
const response: Promise<FireblocksResponse<TRLinkGetSupportedAssetResponse>> = fireblocks.tRLink.getTRLinkSupportedAsset(tRLinkApiGetTRLinkSupportedAssetRequest);
{
  "fireblocksAsset": {
    "id": "USDC_ETH",
    "name": "USD Coin",
    "type": "ERC20",
    "contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
    "nativeAsset": "ETH",
    "decimals": 6,
    "issuerAddress": "0x1234567890abcdef1234567890abcdef12345678"
  },
  "partnerResponse": {
    "assetCode": "USDC",
    "network": "ethereum",
    "enabled": true
  },
  "partnerCanHandleAnyAsset": false,
  "note": "Partner supports only explicitly listed assets",
  "supported": true
}

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

assetId
string
required

Fireblocks asset ID

Response

Asset retrieved successfully

Response for getting a single supported asset by ID

fireblocksAsset
object
required

Public asset information with limited properties for API consumption

partnerResponse
object
required

Raw partner response data

Example:
{
  "assetCode": "USDC",
  "network": "ethereum",
  "enabled": true
}
partnerCanHandleAnyAsset
boolean
required

Whether partner can handle any asset (not just explicitly listed ones)

Example:

false

note
string
required

Note about asset support capabilities

Example:

"Partner supports only explicitly listed assets"

supported
boolean
required

Whether the asset is supported by the partner

Example:

true