Detail for one X1 token by mint: price, 24h change, market cap / FDV (circulating = total
Detail for one X1 token by mint: price, 24h change, market cap / FDV (circulating = total minus incinerated), TVL, 52-week USD range, Metaplex about/links, trust tier. Use after /api/tokens when an agent needs fundamentals for a single mint.
1000 (raw units)
price
6
calls / 30d
3
unique payers
2026-09-17
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",
"pathParams": {
"mint": "B69chRzqzDCmdB5WYB8NRu5Yv5ZA95ABiZcdzCgGm9Tq"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"about": {
"description": null,
"telegram": null,
"twitter": null,
"website": null
},
"change24hPct": -0.79,
"color": "#019bfd",
"decimals": 6,
"listed": true,
"logoURI": "https://x1logos.s3.us-east-1.amazonaws.com/48-usdcx.png",
"mint": "B69chRzqzDCmdB5WYB8NRu5Yv5ZA95ABiZcdzCgGm9Tq",
"name": "USDC.X",
"pools": [
{
"address": "CAJeVEoSm1QQZccnCqYu9cnNF7TTD2fcUA3E5HQoxRvR",
"apr24h": 42.66,
"lpMint": "3xafowUtErXrTEF2Tk3ENpUdxgkK7b5hMuSSFr5AQk6z",
"mintA": "So11111111111111111111111111111111111111112",
"mintB": "B69chRzqzDCmdB5WYB8NRu5Yv5ZA95ABiZcdzCgGm9Tq",
"tokenA": "WXNT",
"tokenB": "USDC.X",
"tvl": 32069.88,
"vol24h": 13800.91
}
],
"priceUsd": 1,
"stats": {
"fdvUsd": 64528.91,
"high52wUsd": 1.6224,
"low52wUsd": 0.1956,
"marketCapUsd": 64528.91,
"tvlUsd": 33737.15,
"volume24hUsd": 13830.33
},
"symbol": "USDC.X",
"trust": "verified",
"updatedAt": 1787411967282
},
"type": "json"
}
},
"routeTemplate": "/api/token/:mint",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"mint": {
"description": "base58 X1 mint address",
"pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
"type": "string"
}
},
"required": [
"mint"
],
"type": "object"
},
"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/token/:mint" # -> 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/token/:mint");
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/token/:mint")
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/7850.json, and this resource appears in /discovery/resources and /discovery/search.