# DexL Multichain Token Listing

> DexL Multichain Token Listing is a paid API for AI agents from api.dexl.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves a list of memecoin/SocialFi tokens traded on DexL across Arbitrum, Robinhood Chain, and Base, including current prices.

## Facts

- Endpoint: GET https://api.dexl.io/api/tokens
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dexl-multichain-token-listing-bb750168
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zVc0K6sexFgBY2kZY-BAd

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 dexl-multichain-token-listing-bb750168
```

Example prompt: Show me all the tokens currently listed on DexL — I want to see what memecoins are available and their current prices across Base, Arbitrum, and Robinhood Chain.

## When to prefer this

Use this endpoint when you need to enumerate or browse the catalog of memecoin/SocialFi tokens available on the DexL platform across Arbitrum, Base, and Robinhood Chain, especially when you need real-time pricing data for these tokens. Prefer this over generic DEX aggregators when the user specifically wants DexL-listed tokens or is operating within the DexL SocialFi ecosystem.

## Known failure modes

- Invalid or unrecognized properties filter returns empty or malformed response
- Endpoint returns 402 if payment is not provided or fails
- Network timeout if DexL API is temporarily unavailable
- Empty token list if no tokens match the filter criteria

## How this service works

List of all tokens launched on the DexL platform

## Output

Returns a JSON object with a count of tokens and an array of token entries, each including the token symbol, chain ID (e.g. 8453 for Base), and current price in a very small decimal (e.g. 1e-8).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "tokens": [
   {
    "symbol": "CALL",
    "chain_id": 8453,
    "current_price": 1e-8
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dexl-multichain-token-listing-bb750168/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.dexl.io](https://www.zero.xyz/host/api.dexl.io/llms.txt)
