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
(4.5)

From 3,366 users

700+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
262ms308ms320ms614ms1203ms

Didn't find what you were looking for? Suggest an improvement


/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

  • ticker  required

    Stock ticker symbol (e.g., AAPL).

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response Fields

  • name

    Company name.

  • ticker

    Stock ticker symbol.

  • chief_executive_officer

    Name of the CEO.

  • address

    Company address object containing address, city, state, and zip fields.

  • latest_price

    Latest stock price.

  • latest_market_cap

    Latest market capitalization.

  • latest_dividend

    Latest dividend payment.

  • cik

    Central Index Key (SEC identifier).

  • cusip

    Committee on Uniform Securities Identification Procedures number.

  • isin

    International Securities Identification Number.

  • exchange

    Stock exchange where the company is listed (e.g., NASDAQ, NYSE).

  • website

    Company website URL.

  • phone_number

    Company phone number.

  • ipo_date

    Initial public offering date in YYYY-MM-DD format.

  • latest_earnings

    Latest earnings information object containing year and quarter fields when available.

Sample Request Live Demo!

ticker

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/ticker?ticker=AAPL

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON

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

  • name  required

    Company name to search for (e.g., Apple).

  • negative_keywords  optional

    Comma-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-Key  required

    API Key associated with your account.

Response Fields

Returns an array of objects, each containing:

  • ticker

    Stock ticker symbol.

  • company_name

    Full company name.

  • exchange

    Stock exchange where the company is listed (e.g., NASDAQ, NYSE).

Sample Request Live Demo!

name
negative_keywords

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/tickersearch?name=Apple

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON