# TrustDex Chain Token Listings

> TrustDex Chain Token Listings is a paid API for AI agents from trustdex.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a paginated list of tradeable token listings for a specified blockchain chain on TrustDex

## Facts

- Endpoint: GET https://trustdex.app/api/v1/x402/listings/%7Bchain%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trustdex-chain-token-listings-376f9c82
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LTY1fcSi0tDUt9KAF8lsj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability trustdex-chain-token-listings-376f9c82
```

Example prompt: Pull up the list of tradeable tokens available on TrustDex for the Solana chain — give me up to 50 results.

## When to prefer this

Use this endpoint when you need to discover or enumerate which tokens are available for trading on a specific blockchain through TrustDex. It's ideal for pre-swap discovery, building token pickers, or auditing which assets are listed across supported chains (Solana, Ethereum, BSC, Base, Arbitrum, Optimism, Polygon, Avalanche).

## Known failure modes

- Invalid chain ID returns an error or empty token list
- Limit parameter out of range (below 1 or above 500) may cause validation error
- Payment of $0.05 USDC not fulfilled results in HTTP 402 response
- Network or upstream DEX data unavailability may return an empty tokens array

## How this service works

TrustDex is a non-custodial Solana DEX. Best-route swaps through Jupiter, EVM trading across 7 chains, native bridging, and live token risk grades. No KYC, no accounts, no custody.

## Output

A JSON object with a boolean 'ok' field, the queried chain name, and a 'tokens' array containing token listing metadata for the specified chain, up to the requested limit (max 500).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "chain": "solana",
  "tokens": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trustdex-chain-token-listings-376f9c82/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trustdex.app](https://www.zero.xyz/host/trustdex.app/llms.txt)
