# cabrini.ai Company Profile

> cabrini.ai Company Profile is a paid API for AI agents from cabrini.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the company profile for a US stock ticker, including name, CIK, SIC industry code, exchange, and fiscal year end.

## Facts

- Endpoint: GET https://cabrini.ai/v1/company
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cabrini-ai-company-profile-bfca31ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1SHfgvPnraQECYQOnqQrK

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-company-profile-bfca31ea
```

Example prompt: Can you pull up the company profile for MSFT — I need the official company name, CIK, SIC industry code, exchange, and fiscal year end?

## When to prefer this

Use this endpoint when you need quick, structured company profile data for a US-listed stock — especially CIK, SIC industry code, or fiscal year end — without needing real-time price data. Ideal for enriching financial research pipelines, SEC filing lookups, or industry classification tasks at very low cost ($0.005 per call).

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Delisted or OTC tickers not in the dataset may return no data
- Network or payment failure results in no response
- Ticker for a non-US stock may not be found

## How this service works

Company profile for a US stock: name, CIK, SIC industry, exchange, fiscal year end. $0.005 USDC.

## Output

A JSON object containing the company's official name, CIK (SEC Central Index Key), SIC industry classification code and description, exchange it trades on, and fiscal year end date, for the requested US stock ticker.

## 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": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US stock ticker symbol"
      }
     }
    }
   }
  },
  "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-company-profile-bfca31ea/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)
