# JeetScreener Float Data

> JeetScreener Float Data 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 free float shares outstanding and free float percentage for a given stock ticker

## Facts

- Endpoint: GET https://jeetscreener.io/api/market/float/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-582b5947
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C5vkSmYeBjEfU2XRdhtjS

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-582b5947
```

Example prompt: What's the free float and free float percentage for AAPL right now — how many shares are freely tradable and what effective date does the data reflect?

## When to prefer this

Use this endpoint when you need float share data — specifically free float shares outstanding and free float percentage — for a given stock ticker. Prefer this over general quote endpoints when your analysis requires understanding how many shares are freely tradable (excluding insider/restricted holdings). Useful for liquidity analysis, short interest normalization, and institutional ownership research.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Ticker not covered by JeetScreener returns no data
- Payment of 0.001 USDC not provided results in 402 Payment Required
- Network timeout if the service is temporarily unavailable
- Stale effective date if data has not been recently refreshed

## How this service works

Float data - free float shares outstanding and percentage

## Output

Returns a JSON object containing the ticker symbol, the number of free float shares outstanding (e.g. 14,831,485,766 for AAPL), the free float percentage (e.g. 99.9%), and the effective date of the data.

## 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": [
  "ticker",
  "freeFloat",
  "effectiveDate",
  "freeFloatPercent"
 ],
 "properties": {
  "ticker": {
   "type": "string"
  },
  "freeFloat": {
   "type": "number"
  },
  "effectiveDate": {
   "type": "string"
  },
  "freeFloatPercent": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jeetscreener-io-582b5947/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)
