Save over 30% when you subscribe to an annual subscription plan!

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

  • 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  optional

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

Sample Request Live Demo!

ticker
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
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

  • 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
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
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" }, "..." ]