Skip to main content
GET
/
stocks
/
api
/
fetch
/
token
/
{tokenAddress}
curl "https://api.trusset.org/stocks/api/fetch/token/0x1234..." \
  -H "X-API-Key: trusset_bc123xy_secret..."
{
  "success": true,
  "data": {
    "tokenAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "name": "Acme Corp Equity",
    "symbol": "ACME",
    "isin": "DE000A0D9PT0",
    "totalSupply": "100000",
    "issuerAddress": "0xAbC123dEf456789012345678901234567890AbCd",
    "paused": false
  },
  "metadata": {
    "requestId": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2025-06-15T12:00:00.000Z",
    "instanceId": "inst_abc123"
  }
}
Returns full details for a single stock token contract, including on-chain state such as total supply, paused status, and role assignments.

Path Parameters

tokenAddress
string
required
Address of the stock token contract.

Response Fields

success
boolean
Request status.
data
object
Token details including contract metadata and on-chain state.
curl "https://api.trusset.org/stocks/api/fetch/token/0x1234..." \
  -H "X-API-Key: trusset_bc123xy_secret..."
{
  "success": true,
  "data": {
    "tokenAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "name": "Acme Corp Equity",
    "symbol": "ACME",
    "isin": "DE000A0D9PT0",
    "totalSupply": "100000",
    "issuerAddress": "0xAbC123dEf456789012345678901234567890AbCd",
    "paused": false
  },
  "metadata": {
    "requestId": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2025-06-15T12:00:00.000Z",
    "instanceId": "inst_abc123"
  }
}