Overview
Company Lookup works by aggregating official SEC EDGAR company filings data. The database includes ~10,000 US public companies with their metadata, SIC codes, contact information, and former names. Data is refreshed daily from SEC submissions.
Endpoint
One host, one path per API. The block below shows this call in four languages; every one of them is the same HTTP request. Making requests covers the timeouts, retries and parameter rules that apply to all of them. The SDKs wrap the same call in a typed client.
curl "https://api.apiverve.com/v1/companylookup?ticker=AAPL" \
-H "x-api-key: your_api_key_here"const res = await fetch('https://api.apiverve.com/v1/companylookup?ticker=AAPL', {
headers: { 'x-api-key': 'your_api_key_here' },
});
if (!res.ok) throw new Error(`${res.status} ${await res.text()}`);
const { data } = await res.json();
console.log(data);import requests
res = requests.get(
"https://api.apiverve.com/v1/companylookup?ticker=AAPL",
headers={"x-api-key": "your_api_key_here"},
timeout=15,
)
res.raise_for_status()
print(res.json()["data"])package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/companylookup?ticker=AAPL", nil)
req.Header.Set("x-api-key", "your_api_key_here")
res, err := http.DefaultClient.Do(req)
if err != nil {
panic(err)
}
defer res.Body.Close()
out, _ := io.ReadAll(res.Body)
fmt.Println(string(out))
}Replace your_api_key_here with the key from your dashboard. When the inputs arrive as a list rather than one at a time, batch requests run up to 200 of them through this same API in a single call.
Authentication
Send your key in the x-api-key header. That is the only auth step — there is no token exchange and no per-endpoint scope to configure. Authentication covers creating, rotating and revoking keys.
A 401 means the key is missing, invalid or expired. A 403 means the key is valid but not permitted here — blocked by a key restriction or an IP allow-list. Running out of credits is a 429.
Parameters
Sent in the query string. Premium parameters are accepted on every plan but only take effect on plans that include them.
| Parameter | Type | Description |
|---|---|---|
tickerRequired | string | Stock ticker symbol (e.g. AAPL, MSFT, GOOGL) length 1–5 |
Response
Every API returns the same three top-level keys, so one response handler covers your whole integration: status, error and data. Only data changes shape. Response format covers the envelope, the other output formats and how premium fields are withheld.
{
"status": "ok",
"error": null,
"data": {
"count": 1,
"companies": [
{
"ticker": "AAPL",
"cik": "0000320193",
"name": "Apple Inc.",
"tickers": [
"AAPL"
],
"exchanges": [
"Nasdaq"
],
"entityType": "operating",
"sic": "3571",
"sicDescription": "Electronic Computers",
"sector": "Manufacturing",
"category": "Large accelerated filer",
"stateOfIncorporation": "CA",
"fiscalYearEnd": "0926",
"ein": "942404110",
"phone": "(408) 996-1010",
"addresses": {
"mailing": {
"street1": "ONE APPLE PARK WAY",
"street2": null,
"city": "CUPERTINO",
"stateOrCountry": "CA",
"zipCode": "95014",
"stateOrCountryDescription": "CA",
"isForeignLocation": 0,
"foreignStateTerritory": null,
"country": null,
"countryCode": null
},
"business": {
"street1": "ONE APPLE PARK WAY",
"street2": null,
"city": "CUPERTINO",
"stateOrCountry": "CA",
"zipCode": "95014",
"stateOrCountryDescription": "CA",
"isForeignLocation": null,
"foreignStateTerritory": null,
"country": null,
"countryCode": null
}
},
"formerNames": [
{
"name": "APPLE INC",
"from": "2007-01-10T05:00:00.000Z",
"to": "2019-08-05T04:00:00.000Z"
},
{
"name": "APPLE COMPUTER INC",
"from": "1994-01-26T05:00:00.000Z",
"to": "2007-01-04T05:00:00.000Z"
},
{
"name": "APPLE COMPUTER INC/ FA",
"from": "1997-07-28T04:00:00.000Z",
"to": "1997-07-28T04:00:00.000Z"
}
]
}
]
}
}Response fields
Paths are relative to data. Premium fields are absent rather than zeroed on plans that do not include them, so check for presence instead of comparing to 0.
| Field | Type | Example | Description |
|---|---|---|---|
count | number | 1 | Number of companies returned |
companies | array[1] | ||
ticker | string | "AAPL" | Stock ticker symbol for the company |
cik | string | "0000320193" | SEC Central Index Key identifier number |
name | string | "Apple Inc." | Legal company name registered with SEC |
tickers | array | [AAPL] | All ticker symbols associated with company |
exchanges | array | [Nasdaq] | Stock exchanges where company trades |
entityType | string | "operating" | Company entity type classification |
sic | string | "3571" | Standard Industrial Classification code |
sicDescriptionPremium | string | "Electronic Computers" | Human-readable SIC code description |
sectorPremium | string | "Manufacturing" | High-level industry sector classification |
category | string | "Large accelerated filer" | SEC filer category designation |
stateOfIncorporation | string | "CA" | State where company is incorporated |
fiscalYearEnd | string | "0926" | Fiscal year end month and day |
ein | string | "942404110" | Employer Identification Number for tax purposes |
phone | string | "(408) 996-1010" | Primary phone number from SEC filings |
addresses | object | {...} | |
mailing | object | {...} | |
street1 | string | "ONE APPLE PARK WAY" | Mailing address street line |
street2 | object | null | |
city | string | "CUPERTINO" | Mailing address city name |
stateOrCountry | string | "CA" | Mailing address state or country code |
zipCode | string | "95014" | Mailing address postal code |
stateOrCountryDescription | string | "CA" | |
isForeignLocation | number | 0 | |
foreignStateTerritory | object | null | |
country | object | null | |
countryCode | object | null | |
business | object | {...} | |
street1 | string | "ONE APPLE PARK WAY" | Business address street line |
street2 | object | null | |
city | string | "CUPERTINO" | Business address city name |
stateOrCountry | string | "CA" | Business address state or country code |
zipCode | string | "95014" | Business address postal code |
stateOrCountryDescription | string | "CA" | |
isForeignLocation | object | null | |
foreignStateTerritory | object | null | |
country | object | null | |
countryCode | object | null | |
formerNamesPremium | array[3] | List of all previously used company names | |
namePremium | string | "APPLE INC" | |
fromPremium | string | "2007-01-10T05:00:00.000Z" | |
toPremium | string | "2019-08-05T04:00:00.000Z" |
Errors
Read the HTTP status first, then error for the specific reason. The body names the parameter that has to change. Error handling covers the full status list and which of them are worth retrying.
| Status | Meaning | What to do |
|---|---|---|
400 | Input was rejected | Read error; it names the parameter. |
401 | Key missing or invalid | Check the header name and the key value. |
403 | Key valid, but not permitted | A key restriction or IP allow-list; see key scoping. |
429 | Rate limited, or out of credits | Read error to tell them apart; see rate limits. |
Other ways to use Company Lookup
Set up Company Lookup on APIVerve, or reach the same source a different way. Your APIVerve account and credits work on all of them — one key, one balance.
Related
More in Finance: