NewConnect Claude, Gemini, ChatGPT, and other AI agents to API Ninjas via our MCP server
Stock Price API

The Walt Disney Company (DIS) Stock Price API

The Walt Disney Company (DIS) is a global entertainment conglomerate listed on the NYSE, with businesses spanning Disney+, Hulu, ESPN, theme parks (Disney Parks), and film studios (Marvel, Pixar, Lucasfilm, Disney). DIS's stock price is driven by streaming profitability, parks attendance and per-cap, and ESPN's direct-to-consumer transition. The DIS Stock Price API delivers real-time and historical price data for Disney.

(4.3)

From 3,661 users

3,000+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
343ms356ms390ms594ms1103ms

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


/v1/stockprice GET

https://api.api-ninjas.com/v1/stockprice


Parameters

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON object with the following fields or an error if the request is unsuccessful.

  • ticker

    The ticker symbol of the stock (e.g., DIS).

  • name

    The full company name associated with the ticker symbol.

  • price

    The current price of the stock.

  • exchange

    The exchange where the stock is listed (e.g., NYSE).

  • updated

    The Unix timestamp of the price update.

  • currency

    The currency in which the stock is priced (e.g., USD).

  • volume

    The trading volume for the most recent session.

Sample Request Live Demo!

Try our APIs in the API playground

Sign up for a free API key to get started — no credit card required.

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

Headers

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

Sample Response

JSON
{
    ticker:"DIS",
    name:"The Walt Disney Company",
    price:113.45,
    exchange:"NYSE",
    updated:1741046400,
    currency:"USD",
    volume:9100000
}

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/stockprice?ticker=DIS" \ -H "X-Api-Key: YOUR_API_KEY"

If your programming language is not listed above, you can still make API calls by using any HTTP request library and following the documentation above.


/v1/stockpricehistorical GET Premium Only

https://api.api-ninjas.com/v1/stockpricehistorical

Returns historical The Walt Disney Company (DIS) stock price data in OHLCV (Open, High, Low, Close, Volume) format. Data is returned in descending order (most recent first).

Parameters

  • ticker  required

    Use DIS for The Walt Disney Company.

  • period  optional

    Time interval between data points. Valid values: 1m, 5m, 15m, 30m, 1h, 4h, 1d. Default is 1h.

  • start  optional

    Start timestamp in Unix format. Defaults to 24 hours ago.

  • end  optional

    End timestamp in Unix format. Defaults to current time.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON array of objects or an error if the request is unsuccessful.

  • open

    Opening price.

  • high

    Highest price.

  • low

    Lowest price.

  • close

    Closing price.

  • volume

    Trading volume.

  • time

    Unix timestamp of the period.

Sample Request Live Demo!

period
start
end

Try our APIs in the API playground

Sign up for a free API key to get started — no credit card required.

https://api.api-ninjas.com/v1/stockpricehistorical?ticker=DIS&period=1h

Headers

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

Sample Response

JSON
[
    {
      open:113.2231,
      low:112.88275,
      high:113.6769,
      close:113.45,
      volume:758333,
      time:1741046400
    },
    {
      open:112.65585,
      low:112.42895,
      high:113.33655,
      close:113.2231,
      volume:650000,
      time:1741042800
    }
]

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/stockpricehistorical?ticker=DIS&period=1h" \ -H "X-Api-Key: YOUR_API_KEY"

Frequently Asked Questions

  • Yes, but you must have a premium subscription. Commercial use of the Stock Price API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.
  • Sign up for a free account to instantly get your API key, then pass it in the X-Api-Key header on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.
  • Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.
  • The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.
  • Send a GET request to the /v1/stockprice endpoint with the ticker parameter set to a stock symbol such as AAPL or an index symbol such as ^DJI for the Dow Jones Industrial Average. The response returns the current price, updated timestamp and volume, while name, exchange and currency are premium only fields; for company metadata see the Ticker API.
  • Premium members receive live, real-time prices while free users get 15-minute delayed data; the updated field gives the Unix timestamp of the last price update. You can upgrade for live pricing on the pricing page.
  • Yes. The premium /v1/stockpricehistorical endpoint returns OHLCV data as a JSON array of objects with open, high, low, close, volume and time fields, and you can control the interval with the period parameter (values from 1m up to 1d) along with optional start and end Unix timestamps. Historical access is unlocked via pricing.
  • Use the premium /v1/stockpricelist endpoint, which returns a paginated JSON array of objects with ticker and name fields; control paging with the offset and limit parameters (limit must be between 1 and 1000). For fund pricing instead, see the related ETF API and Mutual Fund API.