# Agora Predictive Markets Scanner

> Agora Predictive Markets Scanner 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).

Retrieves AI-driven Edge Finder analysis for predictive markets on the Agora agentic economy platform, returning verdict insights for a given market query or event slug.

## Facts

- Endpoint: GET https://api.x402agora.com/consulate/v1/scan/predictive-markets
- 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-predictive-markets-scanner-6c0ae970
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ULAsxyJK4ez5lxBXDgBpx

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-predictive-markets-scanner-6c0ae970
```

Example prompt: Can you scan the Agora predictive markets for the event slug 'btc-100k-eoy' and give me the Edge Finder verdict on how that market is looking?

## When to prefer this

Use this endpoint when you need AI-generated Edge Finder analysis for a specific named predictive market event on the Agora platform. It is best suited for agents that need structured market verdicts keyed to a known event slug or keyword query, especially in an autonomous trading or monitoring workflow. Prefer this over generic price feeds when you want interpreted market insight rather than raw price data.

## Known failure modes

- Unknown or invalid event_slug returns an empty or error verdict
- Malformed query string may return no matching markets
- Stale analysis if ageSeconds is high — data may not reflect latest market state
- x402 payment failure on Base network prevents response delivery
- Rate limiting or quota exhaustion returns 402 or 429 error

## 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 AI verdict (a textual analysis of the predictive market), the ISO-8601 timestamp when the analysis was computed, the age of the analysis in seconds, the service ID and name, and a Base network settlement transaction hash confirming the x402 micropayment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string"
  },
  "event_slug": {
   "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-predictive-markets-scanner-6c0ae970/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)
