# SEC EDGAR Company Ticker Lookup

> SEC EDGAR Company Ticker Lookup is a paid API for AI agents from x402.jmthomasofficial.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Resolves a US-listed company ticker or name to its SEC CIK number, ticker symbol, and registrant name using the SEC EDGAR dataset

## Facts

- Endpoint: GET https://x402.jmthomasofficial.com/v2/api/edgar-company-lookup
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-company-ticker-lookup-198f73ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RjzCEROHogJ996VttYh6D

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 sec-edgar-company-ticker-lookup-198f73ed
```

Example prompt: Can you look up the SEC EDGAR details for NVDA — I need the CIK number and official registrant name so I can find their filings?

## When to prefer this

Use this endpoint when you need to resolve a US-listed stock ticker or company name to its SEC Central Index Key (CIK) for purposes of SEC filing discovery, equity due diligence, or financial research. Prefer this over general web searches when you need authoritative, structured SEC EDGAR identifiers for programmatic use in downstream API calls to EDGAR.

## Known failure modes

- Ticker not found in EDGAR dataset returns empty results array with count 0
- Invalid or missing ticker parameter returns a validation error
- Unknown or delisted tickers may return no matches
- Rate limiting or payment failure returns HTTP 402 or 429

## How this service works

Company intelligence lookup: resolve a US-listed company ticker through the SEC EDGAR company ticker dataset. Returns CIK, ticker, and registrant name for company research, SEC filing discovery, and equity due diligence.

## Output

Returns a JSON object with the query string, count of matched results, a timestamp, and an array of results each containing the CIK number, ticker symbol, and official SEC registrant name for matching US-listed companies.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "minLength": 1,
       "description": "NYSE/Nasdaq ticker or company-name search term."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "query",
      "count",
      "results",
      "timestamp"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "query": {
       "type": "string"
      },
      "results": {
       "type": "array"
      },
      "timestamp": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-company-ticker-lookup-198f73ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.jmthomasofficial.com](https://www.zero.xyz/host/x402.jmthomasofficial.com/llms.txt)
