Profile API

Retrieve company profile data: symbol, company name, CIK, exchange, outstanding shares, latest EOD close price, market cap, sector, industry, country, country flag emoji, 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",
  "outstandingShares": 14697925711,
  "price": 252.62,
  "marketCap": 3712989993113,
  "sector": "Technology",
  "industry": "Computer Manufacturing",
  "country": "United States",
  "countryEmoji": "🇺🇸",
  "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)
outstandingSharesnumberTotal outstanding shares
pricenumberLatest EOD close price
marketCapnumberMarket capitalization
sectorstringSector (e.g. Technology)
industrystringIndustry (e.g. Computer Manufacturing)
countrystringCountry name (e.g. United States)
countryEmojistringCountry flag emoji for display
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