---
name: cabrini.ai
description: cabrini.ai exposes a single skill that retrieves static public company metadata for US-listed stocks from SEC filings. Given a ticker symbol, it returns identifiers and classification data such as the company's legal name, CIK, SIC code, state of incorporation, exchange, fiscal year end, and filer category.
host: cabrini.ai
---

# cabrini.ai

cabrini.ai is a narrow-purpose host focused on SEC-sourced company profile data for US equities. It serves agents that need to resolve a ticker to its legal identity, regulatory classification, or exchange listing without querying a full market data provider. It does not provide pricing, financials, or non-US coverage.

## When to use this host

Use cabrini.ai when an agent needs to resolve a US ticker to its legal name, SEC CIK, SIC code, exchange listing, or filer category — for example, to enrich a dataset with regulatory identifiers or validate that a ticker maps to a known SEC registrant. Do not use it for real-time or historical price data, financial statements (income statement, balance sheet, cash flow), earnings data, or any non-US or OTC-only securities; route those requests to a market data provider (e.g., a financial data API with OHLCV or fundamentals coverage) instead. With only one skill available, this host is best used as a lightweight lookup step rather than a primary data source for financial analysis.

## Capabilities

### Company Identity Resolution

Resolves a US stock ticker to its static regulatory and organizational metadata, including SEC CIK, legal name, SIC industry classification, state, exchange, and filer category.

- **`fetch-company-profile`** — Returns public company metadata for a US stock ticker, including name, CIK, SIC code and description, state, exchange, fiscal year end, and filer category.

## Skill reference

### `fetch-company-profile`

**Company Lookup** — Returns public company metadata for a US stock ticker, including name, CIK, SIC code and description, state, exchange, fiscal year end, and filer category.

*Use when:* Use when an agent needs static company profile data for a US-listed stock, such as resolving a ticker to its legal name, SEC CIK, industry classification, or exchange listing.

*Not for:* Do not use for real-time price data, financial statements, or non-US stocks; use a market data or financials endpoint instead.

**Inputs:**

- `ticker` (string) — US stock ticker symbol to look up. Defaults to empty string if omitted; a valid ticker must be supplied to get meaningful results.

**Returns:** Returns a JSON object with ticker, CIK, legal name, SIC code and description, state, fiscal year end, exchange, and SEC filer category for the requested stock.

**Example:** `GET https://cabrini.ai/v1/company?ticker=AAPL`

---
