# DeepSearch US Stock Earnings Intelligence API

> DeepSearch US Stock Earnings Intelligence API is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Retrieves US stock earnings data including actual vs. expected revenue per quarter and transcript dates for a given ticker symbol

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/us/earnings/%7Bticker%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-us-stock-earnings-intelligence-api-b47e1f95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lYUNI4TGOa7OJup90otrB

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 deepsearch-us-stock-earnings-intelligence-api-b47e1f95
```

Example prompt: Pull the recent quarterly earnings data for AAPL — I want to see the actual vs. expected revenue for each quarter and when the earnings calls happened.

## When to prefer this

Choose this endpoint when you need US stock earnings data with actual vs. expected revenue comparisons on a pay-per-query basis with no subscription. Ideal for agents that need on-demand earnings intelligence for individual tickers without committing to a recurring data feed. Prefer over subscription-based financial data providers when usage is infrequent or cost-per-query model is preferred.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error response
- Ticker not listed on US exchanges may return no data
- Network or payment failure (HTTP 402 if USDC payment not processed)
- Rate limits or quota exceeded if payment is not properly handled
- Very recent quarters may not yet have data populated

## How this service works

Up to 10 years of financials + 3 years of daily price history for all 2,000+ KRX stocks. Pay-per-query with USDC on Base Mainnet — no subscription.

## Output

Returns a JSON object with the ticker symbol and an array of quarterly earnings records, each containing the period (e.g. '2026-Q2'), actual revenue, expected revenue, and transcript date — enabling beat/miss analysis per quarter.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US symbol, e.g. AAPL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "calls": [
   {
    "period": "2026-Q2",
    "revenueActual": 111184000000,
    "transcriptDate": "2026-04-30",
    "revenueExpected": 109457600000
   }
  ],
  "ticker": "AAPL"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-us-stock-earnings-intelligence-api-b47e1f95/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.deepsearch.com](https://www.zero.xyz/host/x402.deepsearch.com/llms.txt)
