Ticker API
The Ticker API provides comprehensive company profile information for publicly traded companies, including executive details, financial metrics, identifiers, and contact information.
Available endpoints:
- /v1/ticker - Get detailed company profile information for any given ticker symbol
- /v1/tickersearch - Search for ticker symbols by company name
Checking API status...
/v1/ticker GET
https://api.api-ninjas.com/v1/ticker
Returns comprehensive company profile information including company name, CEO, address, financial data, exchange information, identifiers (CIK, CUSIP, ISIN), and latest earnings information when available.
Parameters
tickerrequiredStock ticker symbol (e.g.,
AAPL).
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response Fields
nameCompany name.
tickerStock ticker symbol.
chief_executive_officerName of the CEO.
addressCompany address object containing
address,city,state, andzipfields.latest_priceLatest stock price.
latest_market_capLatest market capitalization.
latest_dividendLatest dividend payment.
cikCentral Index Key (SEC identifier).
cusipCommittee on Uniform Securities Identification Procedures number.
isinInternational Securities Identification Number.
exchangeStock exchange where the company is listed (e.g.,
NASDAQ,NYSE).websiteCompany website URL.
phone_numberCompany phone number.
ipo_dateInitial public offering date in YYYY-MM-DD format.
latest_earningsoptionalLatest earnings information object containing
yearandquarterfields when available.
Sample Request Live Demo!
https://api.api-ninjas.com/v1/ticker?ticker=AAPLHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "Apple Inc.",
"ticker": "AAPL",
"chief_executive_officer": "Timothy D. Cook",
"address": {
"address": "One Apple Park Way",
"city": "Cupertino",
"state": "CA",
"zip": "95014"
},
"latest_price": 269.05,
"latest_market_cap": 3992809620000,
"latest_dividend": 1.02,
"cik": "0000320193",
"cusip": "037833100",
"isin": "US0378331005",
"exchange": "NASDAQ",
"website": "https://www.apple.com",
"phone_number": "(408) 996-1010",
"ipo_date": "1980-12-12",
"latest_earnings": {
"year": 2025,
"quarter": 4
}
}Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/ticker?ticker=AAPL" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.
/v1/tickersearch GET Premium Only
https://api.api-ninjas.com/v1/tickersearch
Returns a list of ticker symbols matching a given company name. Results are sorted by exchange size (largest exchanges first) to prioritize the most common listings.
Parameters
namerequiredCompany name to search for (e.g.,
Apple).negative_keywordsoptionalComma-separated list of keywords to filter out from results. If any negative keyword appears in a company name (case-insensitive), that result will be excluded (e.g.,
pineapple,appleseed).
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response Fields
Returns an array of objects, each containing:
tickerStock ticker symbol.
company_nameFull company name.
exchangeStock exchange where the company is listed (e.g.,
NASDAQ,NYSE).
Sample Request Live Demo!
https://api.api-ninjas.com/v1/tickersearch?name=AppleHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[
{
"ticker": "AAPL",
"company_name": "Apple Inc.",
"exchange": "NASDAQ"
},
{
"ticker": "APPLX",
"company_name": "Appleseed Fund",
"exchange": "NASDAQ"
},
{
"ticker": "PEGY",
"company_name": "Pineapple Energy Inc.",
"exchange": "NASDAQ"
},
{
"ticker": "APLE",
"company_name": "Apple Hospitality REIT, Inc.",
"exchange": "NYSE"
},
"..."
]