Skip to main content
GET
/
tenant
/
{tenantId}
/
token
/
info
Retrieves comprehensive information about a token including metadata and basic statistics.
curl --request GET \
  --url https://api.example.com/tenant/{tenantId}/token/info
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.numium.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

TenantId
integer<int64>
required

Query Parameters

tenantId
integer<int64>

Identifier of the tenant.

TokenContractAddress
string
BlockchainId
integer<int64>

Response

200 - application/json

Token information retrieved successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
  "code": "ValidationError",
  "message": "The request parameters failed validation.",
  "info": [
    "The Name field is required.",
    "The Id field must be greater than 0."
  ]
}
value
object

The result value returned when the operation is successful.

Example:
{
  "blockchainCode": 69,
  "blockchainName": "Polygon",
  "blockchainIcon": "iVBORw0KGgoAAAANSUhEUgAAAAUA",
  "tokenName": "USD Coin",
  "tokenSymbol": "USDC",
  "overviewData": {
    "totalSupply": "1000000000",
    "totalHolders": "250000",
    "totalTransfers": "5000000"
  },
  "marketData": {
    "marketPrice": "1.00",
    "marketCap": "1000000000",
    "circulatingSupplyMarketCap": "1000000000"
  },
  "otherInfoDto": {
    "tokenContractAddress": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
    "tokenAssetWeights": { "USDC": 1 }
  },
  "transfersData": { "items": [], "pageSize": 50 },
  "holdersData": { "items": [], "pageSize": 50 }
}