Docs/APIs/Company Lookup

Company Lookup

Lookup SEC-Registered Public Companies

OperationalCredits 1 per callp50 272msFinanceStar

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.

GEThttps://api.apiverve.com/v1/companylookup
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.

401 is the only auth verdict

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.

ParameterTypeDescription
tickerRequiredstringStock 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.

Sample response
{
  "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.

FieldTypeExampleDescription
countnumber1Number of companies returned
companiesarray[1]
tickerstring"AAPL"Stock ticker symbol for the company
cikstring"0000320193"SEC Central Index Key identifier number
namestring"Apple Inc."Legal company name registered with SEC
tickersarray[AAPL]All ticker symbols associated with company
exchangesarray[Nasdaq]Stock exchanges where company trades
entityTypestring"operating"Company entity type classification
sicstring"3571"Standard Industrial Classification code
sicDescriptionPremiumstring"Electronic Computers"Human-readable SIC code description
sectorPremiumstring"Manufacturing"High-level industry sector classification
categorystring"Large accelerated filer"SEC filer category designation
stateOfIncorporationstring"CA"State where company is incorporated
fiscalYearEndstring"0926"Fiscal year end month and day
einstring"942404110"Employer Identification Number for tax purposes
phonestring"(408) 996-1010"Primary phone number from SEC filings
addressesobject{...}
mailingobject{...}
street1string"ONE APPLE PARK WAY"Mailing address street line
street2objectnull
citystring"CUPERTINO"Mailing address city name
stateOrCountrystring"CA"Mailing address state or country code
zipCodestring"95014"Mailing address postal code
stateOrCountryDescriptionstring"CA"
isForeignLocationnumber0
foreignStateTerritoryobjectnull
countryobjectnull
countryCodeobjectnull
businessobject{...}
street1string"ONE APPLE PARK WAY"Business address street line
street2objectnull
citystring"CUPERTINO"Business address city name
stateOrCountrystring"CA"Business address state or country code
zipCodestring"95014"Business address postal code
stateOrCountryDescriptionstring"CA"
isForeignLocationobjectnull
foreignStateTerritoryobjectnull
countryobjectnull
countryCodeobjectnull
formerNamesPremiumarray[3]List of all previously used company names
namePremiumstring"APPLE INC"
fromPremiumstring"2007-01-10T05:00:00.000Z"
toPremiumstring"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.

StatusMeaningWhat to do
400Input was rejectedRead error; it names the parameter.
401Key missing or invalidCheck the header name and the key value.
403Key valid, but not permittedA key restriction or IP allow-list; see key scoping.
429Rate limited, or out of creditsRead 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.

Give it to an AI agentConnect over MCP and your agent calls it as a native tool — Claude, Cursor, ChatGPT.VerveKitReference →
Use it in Google Sheets or ExcelA =VERVE() formula fills a column — no script, no export, recalculates in place.VerveSheetsReference →
Ground an agent on itA cited, machine-checkable fact your model can't produce on its own.VerveContextReference →

More in Finance:

Was this page helpful?