# FortiSwap Token List (X1 Blockchain)

> FortiSwap Token List (X1 Blockchain) is a paid API for AI agents from app.fortiblox.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the full list of tokens routed by FortiSwap on the X1 blockchain, including mint address, symbol, name, decimals, logo, USD price, 24h volume, TVL, and trust tier.

## Facts

- Endpoint: GET https://app.fortiblox.com/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/fortiswap-token-list-x1-blockchain-bbe3ea9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hc0ORe7avQGM_7CSWu1UH

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 fortiswap-token-list-x1-blockchain-bbe3ea9d
```

Example prompt: Show me all the tokens FortiSwap can route on the X1 blockchain — I need the mint address, symbol, USD price, 24h volume, and trust tier so I can figure out which one to swap into.

## When to prefer this

Use this endpoint as the first step in any X1 swap workflow — it is the canonical way to resolve a human-readable token symbol to its on-chain mint address before calling the FortiSwap quote or transaction-building endpoints. Prefer this over generic token registries when you specifically need X1 chain tokens routed through XDEX or Degen launchpad, including trust tier and live price/volume data.

## Known failure modes

- API returns empty list if X1 indexer is temporarily unavailable
- Token metadata may be stale if price/volume data hasn't been refreshed recently
- Missing logo or incomplete fields for newly listed Degen launchpad tokens
- x402 payment failure if the 0.001 USDC per-call fee is not covered
- Rate limiting or payment rejection for high-frequency callers

## How this service works

List every token FortiSwap routes on the X1 blockchain (XDEX + Degen launchpad): mint, symbol, name, decimals, logo, USD price, 24h volume, TVL, trust tier. Call this first to resolve a symbol to a mint before quoting or building an X1 swap.

## Output

A JSON array of token objects, each containing: mint address, symbol, name, decimals, logo URL, current USD price, 24-hour trading volume, total value locked (TVL), and trust tier. This covers all tokens routable via XDEX and the Degen launchpad on X1.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fortiswap-token-list-x1-blockchain-bbe3ea9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.fortiblox.com](https://www.zero.xyz/host/app.fortiblox.com/llms.txt)
