Signals. Infra
API Reference

Companies

GET
/v1/companies

Authorization

InfraApiKey
AuthorizationBearer <token>

Send sk_live_* (production) or sk_test_* (test mode).

In: header

Query Parameters

q?|

name/ticker substring

markets?array<string>|null
is_etf?boolean|null
is_fund?boolean|null
sector?|

GAP: sector not stored on disclosed.Issuer

tickers?array<string>|null
ciks?array<string>|null
isins?array<string>|null
figis?array<string>|null
issuer_ids?array<integer>|null
active_only?Active Only
Defaulttrue
cursor?string|null
limit?integer|null

Response Body

application/json

application/problem+json

application/json

application/problem+json

curl -X GET "https://example.com/v1/companies"
{  "data": [    {      "symbol": "UBER:US",      "ticker": "UBER",      "market": "US",      "name": "Uber Technologies, Inc. Common Stock",      "cik": "0001543151",      "isin": null,      "figi": null,      "issuer_id": 10483    }  ],  "pagination": {    "next_cursor": null,    "has_more": false  }}
GET
/v1/companies/{symbol}

Authorization

InfraApiKey
AuthorizationBearer <token>

Send sk_live_* (production) or sk_test_* (test mode).

In: header

Path Parameters

symbol*Symbol

Response Body

application/json

application/problem+json

application/json

application/problem+json

curl -X GET "https://example.com/v1/companies/string"
{  "symbol": "UBER:US",  "ticker": "UBER",  "market": "US",  "name": "Uber Technologies, Inc. Common Stock",  "cik": "0001543151",  "isin": null,  "figi": null,  "issuer_id": 10483,  "website": "https://www.uber.com",  "country": "US",  "listing_exchange": "NYSE",  "is_etf": false,  "is_fund": false,  "is_adr": false,  "status": "active",  "sector": null,  "industry": null,  "employee_count": null,  "description": "Uber develops and operates technology applications supporting mobility, delivery, and freight.",  "description_provenance": {    "src_id": "src_company_description_7c0aa09f6ca0f9de",    "source_provider": "sec",    "source_url": null,    "accession": "0001543151-26-000012",    "quote": null,    "content_hash": null,    "extracted_at": "2026-05-07T00:00:00+00:00"  },  "_gaps": [    "sector/industry/employee_count not stored on disclosed.Issuer (sourced from marketd symbols/SIC layer, not the corpus)"  ]}
GET
/v1/companies/{symbol}/executives

Authorization

InfraApiKey
AuthorizationBearer <token>

Send sk_live_* (production) or sk_test_* (test mode).

In: header

Path Parameters

symbol*Symbol

Query Parameters

category?|

executives | ir | analysts

current_only?Current Only
Defaulttrue
limit?integer|null

Response Body

application/json

application/problem+json

application/json

application/problem+json

curl -X GET "https://example.com/v1/companies/string/executives"
{  "company": {    "symbol": "UBER:US",    "ticker": "UBER",    "market": "US",    "name": "Uber Technologies, Inc. Common Stock",    "cik": "0001543151",    "isin": null,    "figi": null,    "issuer_id": 10483  },  "data": [    {      "name": "Dara Khosrowshahi",      "role": "Chief Executive Officer",      "category": "executives",      "affiliation": "Uber Technologies, Inc.",      "rank": 1,      "is_current": true,      "provenance": {        "src_id": "src_exec_roster_2fb7a5ee1110af5b",        "source_provider": "sec",        "source_url": "https://www.sec.gov/Archives/edgar/data/1543151/000154315126000012/uber-20260331x10q.htm",        "accession": "0001543151-26-000012",        "quote": null,        "content_hash": null,        "extracted_at": "2026-05-07T00:00:00+00:00"      }    }  ]}
GET
/v1/companies/{symbol}/segments

Authorization

InfraApiKey
AuthorizationBearer <token>

Send sk_live_* (production) or sk_test_* (test mode).

In: header

Path Parameters

symbol*Symbol

Query Parameters

unit?Unit

as_reported | thousand | million | billion

Default"as_reported"
cursor?string|null
limit?integer|null

Response Body

application/json

application/problem+json

application/json

application/problem+json

curl -X GET "https://example.com/v1/companies/string/segments"
{  "data": [    {      "metric_key": "segment_revenue",      "issuer_label": "Uber Technologies, Inc.",      "dimension": "segment",      "member": "Mobility",      "period": {        "calendar": "2026Q1",        "fiscal": "Q1 FY2026",        "end_date": "2026-03-31",        "kind": "quarter"      },      "value": {        "raw": 6280000000,        "normalized": 6280000000,        "unit": "USD",        "original_unit": "USD",        "conversion_factor": 1      },      "tier": "verified",      "provenance": {        "src_id": "src_kpi_facts_d0c94f2f0ef1d2a8",        "source_provider": "sec",        "source_url": "https://www.sec.gov/Archives/edgar/data/1543151/000154315126000012/uber-20260331x10q.htm",        "accession": "0001543151-26-000012",        "quote": "Revenue for the quarter ended March 31, 2026 was $10.43 billion.",        "content_hash": null,        "extracted_at": "2026-05-07T00:00:00+00:00"      }    }  ],  "pagination": {    "next_cursor": null,    "has_more": false  },  "company": {    "symbol": "UBER:US",    "ticker": "UBER",    "market": "US",    "name": "Uber Technologies, Inc. Common Stock",    "cik": "0001543151",    "isin": null,    "figi": null,    "issuer_id": 10483  },  "_gaps": [    "no revenue_segments XBRL model in disclosed; served from KPI v2 observations (dimension='segment')"  ]}