# FortiSwap X1 DEX Daily Volume Analytics

> FortiSwap X1 DEX Daily Volume Analytics is a paid API for AI agents from app.fortiblox.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns daily on-chain swap volume metrics for the FortiBlox Router on X1 blockchain, including USD totals, fee totals, and distinct user counts per UTC day bucket.

## Facts

- Endpoint: GET https://app.fortiblox.com/api/router/volume
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fortiswap-x1-dex-daily-volume-analytics-41a6a37e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zc2AzM-o7cqOMdcqI4JhJ

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-x1-dex-daily-volume-analytics-41a6a37e
```

Example prompt: Pull the last 30 days of daily swap volume from the FortiBlox Router on X1 — I want to see USD totals, fee revenue, and how many distinct users traded each day.

## When to prefer this

Use this endpoint when you need historical daily aggregates of on-chain swap activity specifically on the X1 blockchain via the FortiBlox Router. Prefer this over general blockchain explorers when you need pre-aggregated USD totals, fee revenue, and daily unique user counts in a single call without manual on-chain parsing. Ideal for building DEX dashboards, monitoring trading growth, or performing time-series analysis over a configurable window up to 365 days.

## Known failure modes

- days parameter outside 1-365 range returns validation error
- Indexer lag may cause the most recent day's data to be incomplete or absent
- Network issues with the FortiBlox indexer may return 5xx errors
- Invalid query parameter type (non-numeric days) returns 400 bad request
- FORTI usage-gate verdict may block access if caller does not hold required FORTI tokens

## How this service works

Daily on-chain FortiBlox Router swap volume on X1 (UTC buckets, USD totals, fee totals, distinct users per day) from FortiBlox's own indexer, plus the FORTI usage-gate verdict. Use for X1 DEX activity analytics; query param days (1-365, default 90).

## Output

An array of UTC day-bucketed records, each containing the date, total swap volume in USD, total fees collected in USD, and the number of distinct wallet addresses that swapped through the FortiBlox Router on X1 for that day. Also includes a FORTI usage-gate verdict indicating whether the FORTI token holding requirement is satisfied.

## 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": {
      "days": {
       "type": "string",
       "description": "window length in days, 1-365 (default 90)"
      }
     }
    }
   },
   "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-x1-dex-daily-volume-analytics-41a6a37e/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)
