# Stable Financial Company Facts

> Stable Financial Company Facts is a paid API for AI agents from stable-financial.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns company metadata including name, exchange, sector, industry, SIC code, and location for a given ticker or CIK.

## Facts

- Endpoint: GET https://stable-financial.vercel.app/api/company/facts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stable-financial-company-facts-b8e04467
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aPV-atvwarJ_eZe4Tmu96

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 stable-financial-company-facts-b8e04467
```

Example prompt: Can you pull up the company facts for NVDA — I want to know what sector and industry it's in, what exchange it trades on, and where it's headquartered?

## When to prefer this

Use this endpoint when you need structured company metadata — sector, industry, SIC, exchange, and location — for a specific public company identified by ticker symbol or SEC CIK number. Prefer this over general web search when you need clean, structured fields for downstream financial analysis or data enrichment workflows.

## Known failure modes

- Unknown ticker or CIK returns empty or error response
- Missing required query param (ticker or cik) returns a 400 bad request
- Network timeout if upstream data source is slow
- Invalid ticker format may return no results silently

## How this service works

Company metadata: name, exchange, sector, industry, SIC, location.

## Output

A JSON object containing company_facts with fields such as company name, stock exchange, sector, industry, SIC code, and geographic location for the requested ticker or CIK.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "cik": {
       "type": "string",
       "minLength": 1
      },
      "ticker": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "company_facts"
     ],
     "properties": {
      "company_facts": {
       "type": "object",
       "description": "Company metadata: name, exchange, sector, industry, SIC, location.",
       "propertyNames": {
        "type": "string"
       },
       "additionalProperties": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stable-financial-company-facts-b8e04467/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-financial.vercel.app](https://www.zero.xyz/host/stable-financial.vercel.app/llms.txt)
