HyperPaxeer NetworkPaxeer Network
API Reference

Audit token metadata completeness

GET
/api/v1/tokens/audit

Returns detailed audit of token metadata quality including counts by type, completeness metrics, and a sample of tokens needing enrichment.

Response Body

application/json

text/plain

curl -X GET "https://us-east-1.user-stats.sidiora.exchange/api/v1/tokens/audit"
{
  "total": 0,
  "complete_basic": 0,
  "with_icon": 0,
  "with_price": 0,
  "verified": 0,
  "by_type": {
    "erc20": 0,
    "erc721": 0,
    "erc1155": 0
  },
  "needing_enrichment_count": 0,
  "needing_enrichment_sample": [
    {
      "address": "string",
      "symbol": "string",
      "missing_icon": true,
      "missing_price": true,
      "missing_decimals": true
    }
  ]
}
"string"