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_KEYParameters
Path
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Stock ticker in path (e.g. /v1/profile/AAPL) |
Query
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey | string | Yes | Your 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.
| Field | Type | Description |
|---|---|---|
symbol | string | Stock ticker symbol |
companyName | string | Company name |
cik | string | SEC Central Index Key (CIK) |
exchange | string | Primary exchange (e.g. NASDAQ, NYSE) |
sector | string | Sector (e.g. Technology) |
type | string | One of: equity, fund, non_equity, other |
tags | array | Optional 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