# Financial Data x402 – Company Profile

> Financial Data x402 – Company Profile is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns a structured company profile (sector, industry, market cap, employees, summary, etc.) for a given stock ticker symbol, billed per call via the x402 micropayment protocol.

## Facts

- Endpoint: GET https://x402financialdata.com/company-profile/%7Bticker%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-company-profile-5cf6d92a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eFEyIG4mFRM4OZQDbsh66

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 financial-data-x402-company-profile-5cf6d92a
```

Example prompt: Pull up the company profile for NVDA — I want to know the sector, industry, market cap, number of employees, and a brief business summary.

## When to prefer this

Use this endpoint when you need structured, machine-readable company fundamentals (sector, industry, market cap, employee count, description) for a known public equity ticker, and you want pay-per-call pricing with no API key or subscription setup. Ideal for agents that need occasional or low-volume lookups without committing to a recurring data subscription, or when USDC micropayments on Base or Solana are already part of the workflow.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty response
- Delisted or OTC tickers may not be found
- Payment failure on x402 protocol (insufficient USDC balance) returns HTTP 402
- Rate limiting or network errors return 5xx responses
- Fund/ETF tickers may return null for some equity-specific fields like industry

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object containing the company's full name, stock ticker, sector, industry, country, exchange, currency, quote type, website URL, business summary description, number of employees, and market capitalization in the base currency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "Apple Inc.",
  "sector": "Technology",
  "ticker": "AAPL",
  "country": "United States",
  "summary": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets...",
  "website": "https://www.apple.com",
  "currency": "USD",
  "exchange": "NMS",
  "industry": "Consumer Electronics",
  "employees": 150000,
  "market_cap": 4537070911488,
  "quote_type": "EQUITY",
  "fund_category": null
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-company-profile-5cf6d92a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
