# Neuroterminal Company Financials

> Neuroterminal Company Financials is a paid API for AI agents from api.neuroterminal.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns historical financial metrics and derived ratios for a US-listed public company given its stock ticker

## Facts

- Endpoint: GET https://api.neuroterminal.xyz/v1/company-financials
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/neuroterminal-company-financials-c9594df2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AKGnAlWMVreJYAMRznt_B

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 neuroterminal-company-financials-c9594df2
```

Example prompt: Can you pull up the financial data for Apple (AAPL) — I want to see revenue, gross margin, net margin, and return on equity for the last 3 years?

## When to prefer this

Choose this endpoint when you need structured, quantitative financial fundamentals — revenue, margins, and return ratios — for a US-listed public company without setting up an account or API key. It is ideal for agent workflows that require pay-per-call access to financial data settled in USDC on Base via x402, avoiding subscription overhead. Prefer it over generic financial data APIs when operating in a crypto-native or x402-compatible payment environment.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Non-US or OTC-listed tickers may not be supported
- Requesting more years than available historical data may return partial results
- Network or upstream data provider outages may cause transient failures
- Payment failure via x402 protocol results in HTTP 402 and no data returned

## How this service works

Paid HTTP endpoints for AI agents, settled in USDC on Base via the x402 protocol. No account, no API key — pay per call.

## Output

A JSON object containing the company name, ticker, a time-series of revenue figures keyed by period-end date, and derived financial ratios including net margin, gross margin, return on equity, and year-over-year revenue growth rate.

## 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",
     "required": [
      "ticker"
     ],
     "properties": {
      "years": {
       "type": "integer"
      },
      "ticker": {
       "type": "string",
       "description": "US stock ticker, 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": {
  "ticker": "AAPL",
  "derived": {
   "netMargin": 0.2692,
   "grossMargin": 0.4691,
   "returnOnEquity": 1.5191,
   "revenueGrowthYoY": 0.0645
  },
  "metrics": {
   "revenue": {
    "series": [
     {
      "value": 416161000000,
      "periodEnd": "2025-09-27"
     }
    ]
   }
  },
  "companyName": "Apple Inc."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/neuroterminal-company-financials-c9594df2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.neuroterminal.xyz](https://www.zero.xyz/host/api.neuroterminal.xyz/llms.txt)
