# Company Profile (US Ticker)

> Company Profile (US Ticker) is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns basic company or fund profile for a US ticker, including name, sector/industry, country, exchange, employee count, market cap, and business summary from Yahoo Finance data.

## Facts

- Endpoint: GET https://www.x402financialdata.com/company-profile/:ticker
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/company-profile-us-ticker-f629c14a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SonCu86lgMxnM-mKUqmXu

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 company-profile-us-ticker-f629c14a
```

Example prompt: Can you pull up the company profile for NVDA — I want to know its sector, industry, employee count, market cap, and a quick business summary?

## When to prefer this

Use this endpoint when you need a quick, structured company or ETF profile for a US ticker — particularly useful for enriching financial dashboards, populating screener metadata, or answering 'what does this company do?' questions. Prefer this over full financial statements endpoints when only descriptive/categorical metadata is needed rather than income statement or balance sheet data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Non-US tickers may not be supported
- Delisted or OTC tickers may return incomplete data
- Data freshness depends on Yahoo Finance update cadence; market cap may lag intraday prices

## How this service works

Basic company/fund profile for a US ticker: name, sector/industry (or fund category for ETFs), country, exchange, employee count, market cap, and a short business summary. From real Yahoo Finance data. $0.005/call.

## Output

A JSON object containing the company or fund's canonical name, sector and industry (or fund category for ETFs), country of headquarters, exchange listing, number of employees, market capitalization, and a short natural-language business summary sourced from Yahoo Finance.

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

## More

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