# x402-farm US Market Snapshot

> x402-farm US Market Snapshot is a paid API for AI agents from x402-farm.vercel.app, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Returns a real-time financial snapshot for a US-listed company, including net margin and revenue growth, paid per-call via x402/USDC.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/us/snapshot
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-us-market-snapshot-18d0f59f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eHecV_7yJDtDtxZlAXigt

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 x402-farm-us-market-snapshot-18d0f59f
```

Example prompt: Pull a financial snapshot for Apple Inc. from the US market — I need the net margin and revenue growth percentages right now.

## When to prefer this

Choose this endpoint when you need a fast, lightweight financial snapshot (net margin + revenue growth) for a US-listed company with no account setup, paying only per call in USDC via the x402 protocol. Ideal for AI agents that need occasional financial data without committing to a subscription API.

## Known failure modes

- Payment not provided or insufficient USDC — returns HTTP 402 requiring x402 payment
- Network or upstream data source unavailable — may return 5xx error
- No query parameters provided may yield a default company or error if a specific ticker is required
- Stale or delayed data if the underlying financial data source has a lag

## How this service works

Pay-per-call APIs for AI agents — x402 protocol, USDC on Base, no account needed.

## Output

A JSON object containing the company name (e.g. 'Apple Inc.'), net margin percentage (e.g. 24.3), and revenue growth percentage (e.g. 6.2) for the snapshotted US-listed company.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "Apple Inc.",
  "net_margin_pct": 24.3,
  "revenue_growth_pct": 6.2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-us-market-snapshot-18d0f59f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-farm.vercel.app](https://www.zero.xyz/host/x402-farm.vercel.app/llms.txt)
