# agentfeeds.jp AERO/USDC Cross-Venue Spread Statistics

> agentfeeds.jp AERO/USDC Cross-Venue Spread Statistics is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns 1-minute cross-venue spread statistics (in basis points) for AERO/USDC, comparing Aerodrome's vAMM pool vs its Uniswap v3 0.3% pool on Base.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/dex/spreads/aero
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeeds-jp-aero-usdc-cross-venue-spread-statistics-8cd998ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Oido9RmQSMiyLbbLDGeei

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 agentfeeds-jp-aero-usdc-cross-venue-spread-statistics-8cd998ea
```

Example prompt: Pull me the last 200 AERO/USDC cross-venue spread records from agentfeeds, comparing Aerodrome's vAMM pool against the Uniswap v3 0.3% pool on Base, going back to 2024-11-01T00:00:00Z.

## When to prefer this

Use this endpoint specifically when you need cross-venue spread analysis for AERO/USDC on Base, comparing Aerodrome's native vAMM pool against a Uniswap v3 0.3% pool. Prefer this over the generic dex.spread_summary endpoint when the focus is specifically on Aerodrome's governance token (AERO). Best for arbitrage monitoring, liquidity analysis, or on-chain market microstructure research on Base.

## Known failure modes

- Invalid 'limit' value outside 1-500 range returns validation error
- Malformed 'since' ISO timestamp returns 400 bad request
- No data available for the requested time range returns empty result set
- x402 payment failure or insufficient USDC balance blocks the request
- Rate limiting if too many calls are made in a short window

## How this service works

1-minute cross-venue spread statistics (bps) for AERO/USDC on Base: Aerodrome's own vAMM pool vs its Uniswap v3 0.3% pool (on-chain mids). Same methodology as dex.spread_summary, dedicated to Aerodrome's own governance token. Descriptive statistics only; not investment advice.

## Output

Returns paginated descriptive statistics of 1-minute spread measurements in basis points for AERO/USDC, comparing mid prices from Aerodrome's native vAMM pool versus its Uniswap v3 0.3% pool on Base. Includes statistical summaries (e.g. mean, min, max, percentiles) of the cross-venue spread. Supports filtering by timestamp and result count.

## 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": {
      "limit": {
       "type": "integer",
       "description": "1-500, default 100"
      },
      "since": {
       "type": "string",
       "description": "ISO timestamp filter"
      }
     }
    }
   },
   "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/agentfeeds-jp-aero-usdc-cross-venue-spread-statistics-8cd998ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentfeeds.jp](https://www.zero.xyz/host/api.agentfeeds.jp/llms.txt)
