Returns gateway health status and optionally backend service health.
| services | string Enum: "true" "false" Include backend service health checks |
{- "status": "healthy",
- "timestamp": "2019-08-24T14:15:22Z",
- "services": [
- {
- "name": "string",
- "status": "healthy",
- "latencyMs": 0,
- "error": "string"
}
]
}Register a new token for monitoring and analysis.
| address required | string^(0x)?[a-fA-F0-9]{40}$ |
| network_id required | integer |
| name | string |
| symbol | string |
{- "address": "string",
- "network_id": 0,
- "name": "string",
- "symbol": "string"
}{- "token_id": 0
}Subscribe to receive notifications for a token. The token must already exist.
| address required | string^(0x)?[a-fA-F0-9]{40}$ |
| network_id required | integer |
{- "address": "string",
- "network_id": 0
}{- "error": "string",
- "message": "string"
}Returns aggregated token details including behaviors, contract metadata, and market data.
| network required | string Network ID (e.g., 1 for Ethereum mainnet) |
| address required | string Token contract address |
| contract | string Enum: "true" "false" Include contract metadata (default: true) |
| price | string Enum: "true" "false" Include market/price data (default: true) |
{- "id": 0,
- "address": "string",
- "network_id": 0,
- "name": "string",
- "symbol": "string",
- "last_analyzed": "2019-08-24T14:15:22Z",
- "behaviors": [
- {
- "kind": "string",
- "function_signature": "string",
- "authority_address": "string",
- "last_observed_at": "2019-08-24T14:15:22Z"
}
], - "contract": {
- "is_verified": true,
- "deployer": "string",
- "contract_name": "string"
}, - "market": {
- "price_usd": 0,
- "price_change_24h": 0,
- "volume_24h_usd": 0,
- "market_cap_usd": 0
}
}