# JeetScreener Ticker Details

> JeetScreener Ticker Details is a paid API for AI agents from jeetscreener.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns company profile data for a stock ticker including name, description, exchange, market cap, SIC code, and employee count

## Facts

- Endpoint: GET https://jeetscreener.io/api/market/ticker/AAPL
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jeetscreener-io-d2378578
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-SL3j8U_UjtnldDY7kqXL

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 jeetscreener-io-d2378578
```

Example prompt: What's the company profile for TSLA — I need the market cap, number of employees, exchange it trades on, and a brief description of what the company does.

## When to prefer this

Use this endpoint when you need fundamental company profile information — description, exchange, market cap, employee count, or SIC code — for a publicly traded stock by ticker symbol. Prefer this over news or quote endpoints when the goal is company identity and background rather than price or recent events.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty response
- Delisted or OTC tickers may not be found
- Network or API timeout if service is unavailable
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Ticker details - company name, description, exchange, market cap, SIC code, employees

## Output

Returns a JSON object with the ticker symbol, full company name, description of the business, exchange listing, market capitalization in USD, SIC code, number of employees, IPO list date, and homepage URL for the requested stock ticker.

## Example request

```json
{
 "ticker": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "sic",
  "name",
  "ticker",
  "exchange",
  "listDate",
  "employees",
  "marketCap",
  "description",
  "homepageUrl",
  "sicDescription"
 ],
 "properties": {
  "sic": {
   "type": "string"
  },
  "name": {
   "type": "string"
  },
  "ticker": {
   "type": "string"
  },
  "exchange": {
   "type": "string"
  },
  "listDate": {
   "type": "string"
  },
  "employees": {
   "type": "number"
  },
  "marketCap": {
   "type": "number"
  },
  "description": {
   "type": "string"
  },
  "homepageUrl": {
   "type": "string"
  },
  "sicDescription": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jeetscreener-io-d2378578/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jeetscreener.io](https://www.zero.xyz/host/jeetscreener.io/llms.txt)
