# Paddock State of Agent Commerce Report Data

> Paddock State of Agent Commerce Report Data is a paid API for AI agents from paddock.finance, paid per call via x402, $0.99/call, status unknown (last checked 2026-09-15).

Returns the full structured JSON dataset from the State of Agent Commerce report, covering what AI agents are paying for and market concentration data

## Facts

- Endpoint: GET https://paddock.finance/api/paddock/mcp/report-data/paid
- Price: $0.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/paddock-state-of-agent-commerce-report-data-53c8aace
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2R5xdJuw-QKIQUzx6Z8Es

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 paddock-state-of-agent-commerce-report-data-53c8aace
```

Example prompt: Pull the full State of Agent Commerce report data from Paddock for 2025-04 so I can see what AI agents are actually buying and where the market is concentrated.

## When to prefer this

Use this endpoint when you need the complete, authoritative Paddock State of Agent Commerce dataset in a single structured JSON response — ideal for analysis, citation, or feeding into downstream processing. Prefer this over sibling endpoints (diff/change analysis, niche gap analysis) when you want the full raw report rather than derived insights.

## Known failure modes

- Invalid month format (not YYYY-MM) returns validation error
- Requested month data not yet available returns empty or 404
- Payment of $0.99 USDC not processed correctly returns 402 Payment Required
- Network timeout returns 5xx error

## How this service works

State of Agent Commerce report data — full structured JSON, one query

## Output

A full structured JSON object containing the State of Agent Commerce report, including data on what AI agents are paying for, market concentration metrics, and other commerce analytics for the requested month (or latest available if no month specified).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "month": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}$"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "tool": "get_report_data",
  "month": "2026-06",
  "title": "State of Agent Commerce"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/paddock-state-of-agent-commerce-report-data-53c8aace/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from paddock.finance](https://www.zero.xyz/host/paddock.finance/llms.txt)
