# x402-farm US Financials API

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

Returns key financial data (e.g. net income) for US public companies, accessible via pay-per-call with USDC on Base.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/us/financials
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-us-financials-api-e5dffb62
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_06mxi1pSULYxbXchD-3PL

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-financials-api-e5dffb62
```

Example prompt: What is Apple's net income for the most recent fiscal year?

## When to prefer this

Choose this endpoint when you need quick, pay-per-call access to US public company financial data (especially net income) without setting up an account or API key. It is ideal for AI agents that need lightweight, on-demand financial lookups billed in USDC on Base via the x402 protocol, and where a full financial data subscription would be overkill.

## Known failure modes

- Unknown or non-US company name returns empty or error response
- Ambiguous ticker/name may return incorrect company data
- Payment failure via x402 protocol blocks the call
- Fiscal period data may be delayed or not reflect the most recent quarter
- Rate limiting or Vercel cold-start may cause occasional latency spikes

## 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 and an array of net income entries, each with a fiscal period end date and the income value in USD (e.g. {"name": "Apple Inc.", "net_income": [{"end": "2025-09-27", "value": 112010000000}]}).

## 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_income": [
   {
    "end": "2025-09-27",
    "value": 112010000000
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-us-financials-api-e5dffb62/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)
