Finance
Resolve ticker, CIK & company name API
Cross-resolve a US stock ticker, SEC CIK (central index key), or company name against the SEC's public company_tickers snapshot, returning the zero-padded 10-digit CIK (the form EDGAR APIs require), the ticker, the legal title, and a ready EDGAR link. The value-add is the normalized cross-map + fuzzy name search over a corpus agents otherwise download and index themselves. Answers 'what is Apple's CIK', 'which company is ticker AAPL', 'CIK for Microsoft', 'find the ticker for this company name'.
Price$0.01per request
MethodPOST
Route/v1/finance/ticker-resolve
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
financetickerciksecedgarsymbolcompany-lookupsecurities
API URL
Integration docshttps://x402.hexl.dev/v1/finance/ticker-resolveExample request
{
"query": "AAPL"
}Example response
{
"query": "AAPL",
"matchCount": 1,
"matches": [
{
"ticker": "AAPL",
"cik": "0000320193",
"cikInt": 320193,
"title": "Apple Inc.",
"edgarUrl": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0000320193&type=&dateb=&owner=include&count=40"
}
],
"list": {
"source": "SEC company_tickers",
"entries": 10245
}
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"AAPL",
"320193",
"Microsoft"
]
},
"limit": {
"type": "number",
"examples": [
10
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}