# ScriptMasterLabs SEC Company Tickers API

> ScriptMasterLabs SEC Company Tickers API is a paid API for AI agents from acp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Looks up SEC-registered company ticker symbols by company name or ticker query, returning company-to-ticker mappings from SEC data.

## Facts

- Endpoint: GET https://acp-x402-discovery.onrender.com/x402/sec-company-tickers
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-sec-company-tickers-api-1932c02c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dtyKB9Ed1kxsen2qulAAA

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 scriptmasterlabs-sec-company-tickers-api-1932c02c
```

Example prompt: Can you look up the SEC ticker symbol and CIK number for Apple using the SEC company tickers endpoint — search for 'AAPL'?

## When to prefer this

Choose this endpoint when you need to resolve a company name or ticker abbreviation to its official SEC identifier (CIK) or confirm a ticker symbol against SEC-registered data. It is particularly useful for compliance workflows, SEC EDGAR filing lookups, or financial data enrichment where authoritative SEC sourcing matters. Prefer this over general financial data APIs when the SEC-official mapping is specifically required.

## Known failure modes

- Query parameter 'q' not provided — returns empty or error result
- Company not found in SEC database — returns empty results
- Ambiguous query matching many companies — may return multiple or unexpected results
- Payment not settled via x402 — returns 402 Payment Required
- Service unavailable on Render free tier — cold start latency or downtime
- Malformed query string — may return no results

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

Returns a mapping of company names to their SEC ticker symbols and CIK identifiers, sourced from the SEC's official company tickers dataset. The response may include company name, ticker, and CIK number for matching entities.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "example": "AAPL"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-sec-company-tickers-api-1932c02c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-discovery.onrender.com](https://www.zero.xyz/host/acp-x402-discovery.onrender.com/llms.txt)
