Finance
Company 360 (SEC + filings + LEI) API
One call that resolves a company and JOINS what we know: SEC identity (ticker→CIK→official name), its recent filings, and its Legal Entity Identifier (GLEIF/KYB). Saves an agent 3-4 lookups plus the entity-resolution glue. Answers 'tell me about AAPL', 'profile this company', 'who is Apple legally + what have they filed'.
Price$0.01per request
MethodPOST
Route/v1/finance/company-360
StatusLive
MIME typeapplication/json
Rate limit40/minute
Cache3600s public
financecompanyprofilesecedgarleikybentity-resolutioncomposite
API URL
Integration docshttps://x402.hexl.dev/v1/finance/company-360Example request
{
"ticker": "AAPL"
}Example response
{
"ticker": "AAPL",
"name": "Apple Inc.",
"cik": "0000320193",
"recentFilings": [
{
"form": "10-Q",
"filedDate": "2026-05-01",
"url": "https://www.sec.gov/Archives/…"
}
],
"legalEntity": {
"lei": "HWUPKR0MPOU8FGXBT394",
"name": "Apple Inc.",
"jurisdiction": "US-CA"
}
}Input schema
{
"type": "object",
"properties": {
"ticker": {
"type": "string",
"examples": [
"AAPL"
]
},
"company": {
"type": "string",
"examples": [
"Apple Inc"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}