Skip to main content

Get Distribution Token Info

Returns distribution-specific information for a token by its ID: standard, sale rules, status, supply, value, currency token and integration metadata. Use this to render a distribution token in an external system.

Request

GET /v2/distributions/tokens/{tokenID}

Parameters

NameTypeInDescription
tokenIDstringpathRequired. Distribution token ID

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --request GET \
--url '{{baseUrl}}/v2/distributions/tokens/67d8774e903bfcbe7eb5d93e' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'

Response

{
"standard": 1,
"name": "Istanbul Commercial Lease #1",
"description": "12-month lease on a commercial real estate asset located in Istanbul...",
"symbol": "ICL",
"contract": { "address": "0x073c0196e516a0e77b1c804d1825fb1bad23895d" },
"rules": {},
"status": 1,
"integration": {},
"value": 250000,
"supply": 2500,
"seller_address": "0x4A096E485281DE1B8bF11A511D39d5B128EF7C4b",
"currency_token": {
"name": "Tether USD",
"symbol": "USDT",
"decimals": 6,
"address": "0x073c0196e516a0e77b1c804d1825fb1bad23895d"
},
"external_id": "EXT-TKN-1042"
}

Response Fields

FieldTypeDescription
standardintegerToken standard
name / description / symbolstringToken display fields
contractobjectOn-chain contract info
rulesobjectSale / trading rules
statusintegerDistribution token status
valuenumberTotal monetary value
supplyintegerToken supply
seller_addressstringSeller wallet address
currency_tokenobjectCurrency token {name, symbol, decimals, address}
metaobjectOptional images / documents metadata
external_idstringToken ID in the external system (optional)

Status Codes

Status CodeDescription
200Success
400Bad Request - Missing or invalid tokenID
401Unauthorized - Invalid or missing authentication token
404Not Found - Distribution token not found
500Internal Server Error