# FortiSwap Token Detail by Mint

> FortiSwap Token Detail by Mint 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 full fundamentals for a single X1 token by mint address: price, 24h change, market cap, FDV, TVL, 52-week USD range, Metaplex metadata, and trust tier.

## Facts

- Endpoint: GET https://app.fortiblox.com/api/token/:mint
- 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-detail-by-mint-79eb9f49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_omjY1m2BtBy1FbWn-m3xQ

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-detail-by-mint-79eb9f49
```

Example prompt: Pull up the full token details on FortiSwap for X1 mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — I want price, 24h change, market cap, FDV, and trust tier.

## When to prefer this

Use this endpoint when an agent needs comprehensive fundamentals for a single known X1 token mint — especially price, market cap, FDV, TVL, 52-week range, and trust tier in one call. Prefer it over /api/tokens (list) when you already have the mint address and need deeper per-token data, or before executing a swap to validate token quality.

## Known failure modes

- Invalid or malformed mint address (fails base58 pattern) returns 400
- Mint address not found in FortiSwap's routing table returns 404
- Network or RPC unavailability on X1 chain returns 503
- Payment not included or insufficient returns 402

## How this service works

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.

## Output

A JSON object containing the token's current USD price, 24-hour percentage change, market capitalization, fully diluted valuation (FDV), circulating supply (total minus incinerated), TVL, 52-week USD high/low range, Metaplex on-chain metadata (name, symbol, description, external links), and a trust tier classification.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
       "description": "base58 X1 mint address"
      }
     }
    },
    "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-detail-by-mint-79eb9f49/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)
