Profile API

Retrieve company profile data: symbol, company name, CIK, exchange, sector, type, and optional tags.

GET /v1/profile/{symbol}

Quick Copy & Paste

Sign in to auto-include your API key in copied URLs.

https://api.earningsapi.com/v1/profile/AAPL?apikey=YOUR_API_KEY

Parameters

Path

ParameterTypeRequiredDescription
symbolstringYesStock ticker in path (e.g. /v1/profile/AAPL)

Query

ParameterTypeRequiredDescription
apikeystringYesYour API key

Response Example

{
  "symbol": "AAPL",
  "companyName": "Apple Inc.",
  "cik": "0000320193",
  "exchange": "NASDAQ",
  "sector": "Technology",
  "type": "equity",
  "tags": []
}

Response Fields

The response is a single object. type is one of: equity, fund, non_equity, other. tags may include: adr, etf, etn, reit, preferred, warrant, right, unit, spac.

FieldTypeDescription
symbolstringStock ticker symbol
companyNamestringCompany name
cikstringSEC Central Index Key (CIK)
exchangestringPrimary exchange (e.g. NASDAQ, NYSE)
sectorstringSector (e.g. Technology)
typestringOne of: equity, fund, non_equity, other
tagsarrayOptional tags: adr, etf, etn, reit, preferred, warrant, right, unit, spac

type and tags

type

equity, fund, non_equity, other

tags (optional)

adr, etf, etn, reit, preferred, warrant, right, unit, spac

cURL Example

curl "https://api.earningsapi.com/v1/profile/AAPL?apikey=YOUR_API_KEY"

Rate Limiting

  • Free tier: 1,000 requests / month
  • 429 returned when limit is exceeded