# TickersFeed MSFT Earnings Data

> TickersFeed MSFT Earnings Data is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns historical earnings data for MSFT (or any supported symbol), including actual EPS, consensus estimate, surprise amount, and surprise percent per quarter.

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/MSFT/earnings
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-msft-earnings-data-d2214dd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kWP5FkvSin2qWHiCQtgs9

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 tickersfeed-msft-earnings-data-d2214dd1
```

Example prompt: Pull up Microsoft's earnings history from TickersFeed — I want to see the actual EPS, analyst estimates, and how big the surprise was for each recent quarter.

## When to prefer this

Use this endpoint when you need structured, per-quarter EPS actuals and estimates with surprise metrics for a specific US-listed stock. Prefer this over general quote endpoints when the user's question is specifically about earnings performance, analyst expectations, or beat/miss history rather than current price.

## Known failure modes

- Invalid or unsupported ticker symbol returns empty or error response
- Symbol not covered by the 8,400+ supported NYSE/NASDAQ/AMEX universe
- Payment not included or insufficient USDC amount causes 402 rejection
- Network timeout or service unavailability
- Stale data if earnings have not yet been reported for the current quarter

## How this service works

Earnings history for any US stock — last 4 quarters with actual vs estimate EPS, surprise, and surprise percent. Covers NYSE, NASDAQ, AMEX. $0.003 USDC per call.

## Output

An array of quarterly earnings records for the requested symbol, each containing the reporting period date, actual EPS, consensus estimate, earnings surprise in dollars, and surprise as a percentage of the estimate.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Stock ticker symbol (e.g. AAPL, MSFT)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-msft-earnings-data-d2214dd1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
