# cabrini.ai US Stock Tickers by Date

> cabrini.ai US Stock Tickers by Date is a paid API for AI agents from cabrini.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns the complete list of all US stock ticker symbols that traded on a specified date, covering 7,000–16,000+ symbols.

## Facts

- Endpoint: GET https://cabrini.ai/v1/tickers
- 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/cabrini-ai-us-stock-tickers-by-date-1dfd68a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0yODOjHFUTE9Apw11IZIo

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 cabrini-ai-us-stock-tickers-by-date-1dfd68a2
```

Example prompt: Can you get me the full list of every US stock ticker symbol that traded on March 15, 2024?

## When to prefer this

Use this endpoint when you need the complete universe of US stock ticker symbols active on a specific historical or recent trading date — ideal for building ticker lists for batch processing, backtesting, screening, or ensuring full market coverage. Prefer this over maintained static lists when you need accurate coverage for a specific date accounting for delistings, new listings, and symbol changes.

## Known failure modes

- Non-trading date (weekend or market holiday) may return empty list or error
- Invalid date format (not YYYY-MM-DD) results in a 400 or validation error
- Future date with no trading data returns empty or error
- Payment failure (insufficient USDC balance) returns 402 Payment Required
- Network timeout on large symbol list responses

## How this service works

List every US stock ticker that traded on a given date (7,000-16,000+ symbols). $0.005 USDC.

## Output

A JSON array or object containing all US stock ticker symbols (7,000–16,000+ symbols) that were active on the requested trading date, representing the complete universe of US equities traded that day.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Trading date, YYYY-MM-DD"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "const": "json"
    },
    "example": {}
   }
  },
  "description": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cabrini-ai-us-stock-tickers-by-date-1dfd68a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cabrini.ai](https://www.zero.xyz/host/cabrini.ai/llms.txt)
