List every token FortiSwap routes on the X1 blockchain (XDEX + Degen launchpad): mint, sym
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.
1000 (raw units)
price
18
calls / 30d
6
unique payers
2026-09-15
updated
Provider
app.fortiblox.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "FdQ2FmAydXBe87Nm7w4MjksRqTUjahPaqjj7mVshKvNa",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x581aB190DF2B2932175d987E787Acd28A85eAA1C",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"errors": [],
"refreshing": false,
"tokens": [
{
"change1d": -14.31,
"change1h": 0,
"decimals": 9,
"fdvUsd": 519847027.59,
"logoURI": "https://app.xdex.xyz/assets/images/tokens/x1.webp",
"marketCapUsd": 6747952.88,
"mint": "So11111111111111111111111111111111111111112",
"name": "XNT",
"priceUsd": 0.4866,
"sources": [
"xdex"
],
"sparkline": [
403192.58,
416473.67,
345505.34
],
"symbol": "XNT",
"trust": "verified",
"volume24hUsd": 31500.82
},
{
"change1d": 0.55,
"change1h": 0,
"decimals": 6,
"fdvUsd": 64528.91,
"logoURI": "https://x1logos.s3.us-east-1.amazonaws.com/48-usdcx.png",
"marketCapUsd": 64528.91,
"mint": "B69chRzqzDCmdB5WYB8NRu5Yv5ZA95ABiZcdzCgGm9Tq",
"name": "USDC.X",
"priceUsd": 1,
"sources": [
"xdex"
],
"sparkline": [
2.0423,
2.0565,
2.0536
],
"symbol": "USDC.X",
"trust": "verified",
"volume24hUsd": 13830.33
}
],
"updatedAt": 1787411884813,
"warming": false
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://app.fortiblox.com/api/tokens" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://app.fortiblox.com/api/tokens");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://app.fortiblox.com/api/tokens")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7852.json, and this resource appears in /discovery/resources and /discovery/search.