Get asset profile
Read canonical identity and metadata for one asset.
Use this before pulling market state when the agent needs a stable asset object.
Access
- Surfaces:
mcp,rest,skill - Metering:
mcp_call,rest_call - Scope:
DEX available · EVM family primary
Handles
| Surface | Label | Value |
|---|---|---|
mcp | MCP | market.resolve_asset |
rest | HTTP | GET /v1/market/asset-profile |
skill | Skill | market.resolve_asset |
Contract notes
- Send explicit
chainandaddressvalues. See Parameter Contracts for shared validation rules. - Zero-address inputs such as
0x0000000000000000000000000000000000000000and shorthand forms such as0x0are rejected. - Failed responses return machine-readable
error.codeplus bothtrace_idandrequest_idfor support and retry diagnostics.
Request example
GET {GATEWAY_BASE_URL}/v1/market/asset-profile?market_kind=dex&chain=ethereum&address=0xC02aaA39b223FE8D0A0E5C4F27eAD9083C756Cc2Try send
Try send
Try asset profile
Send one direct browser request to the current hosted gateway base URL so the real network request is visible in devtools. The API key is only stored locally when you provide one.
Response example
{
"asset_profile": {
"market_kind": "dex",
"chain": "ethereum",
"address": "0xC02aaA39b223FE8D0A0E5C4F27eAD9083C756Cc2",
"symbol": "WETH",
"name": "Wrapped Ether",
"source_id": "gdex"
},
"freshness_ms": 120,
"source_status": "healthy"
}Request fields
Query parameters
| Field | Type | Required | Notes |
|---|---|---|---|
market_kind | string | Required | Market family. Use `dex` for now. |
chain | string | Required | Chain key. Use an enabled EVM chain such as `ethereum` or `base`. |
address | string | Required | canonical EVM token address for the selected public chain. Send the full 20-byte `0x...` contract address. |
Response fields
Asset profile
| Field | Type | Notes |
|---|---|---|
asset_profile.market_kind | string | Market family. |
asset_profile.chain | string | Asset chain. |
asset_profile.address | string | Asset address. |
asset_profile.symbol | string | Asset symbol. |
asset_profile.name | string | Asset name. |
asset_profile.source_id | string | Backing source id. |
Response metadata
| Field | Type | Notes |
|---|---|---|
freshness_ms | number | Data age in milliseconds. |
source_status | string | Source health for this response. |
Related pages
Last updated on