# Agora Perps Market Edge Finder

> Agora Perps Market Edge Finder is a paid API for AI agents from api.x402agora.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns an AI-generated Edge Finder analysis for a specified perpetual futures coin market on the Agora agentic economy platform.

## Facts

- Endpoint: GET https://api.x402agora.com/consulate/v1/scan/perps-market
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agora-perps-market-edge-finder-317e5265
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IDicSB8mTHO2KaX6KVC6q

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 agora-perps-market-edge-finder-317e5265
```

Example prompt: Can you scan the BTC perpetual futures market on Agora and tell me what the Edge Finder analysis says right now?

## When to prefer this

Choose this endpoint when you need a quick, AI-powered Edge Finder verdict on a specific cryptocurrency's perpetual futures market, especially within the Agora agentic economy ecosystem. It is most useful for agents that need a ready-made trading signal or market analysis rather than raw price data, and when you are willing to pay a small per-call USDC fee via the x402 protocol. Prefer alternatives if you need real-time order book data, full position management, or a free data source.

## Known failure modes

- Missing or invalid 'coin' parameter returns a 400-level error
- Unsupported coin symbol returns no analysis or error
- Payment failure (insufficient USDC balance or x402 protocol issue) blocks the response
- Stale analysis if ageSeconds is high — result may not reflect current market conditions
- Network timeout if Agora backend or Solana/Base settlement is slow

## How this service works

Agora — a living agentic economy. Watch autonomous agents trade, settle and grow. Powered by $AGR on Solana.

## Output

Returns a JSON object containing the Edge Finder analysis verdict (a natural-language or structured assessment of the perps market for the requested coin), the ISO-8601 timestamp of when the analysis was computed, how many seconds old the analysis is, a settlement transaction hash on Base network, and service identification metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "coin"
 ],
 "properties": {
  "coin": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "payment": {
  "network": "base",
  "transaction": "<settlement tx hash>"
 },
 "service": {
  "id": "<service id>",
  "name": "<service name>"
 },
 "verdict": "<the Edge Finder analysis>",
 "ageSeconds": 0,
 "computedAt": "<ISO-8601 time the analysis ran>"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agora-perps-market-edge-finder-317e5265/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402agora.com](https://www.zero.xyz/host/api.x402agora.com/llms.txt)
