Stock

Access real-time and historical stock market data including current prices, volume, market cap, and other key metrics for publicly traded companies across major global exchanges, with support for various stock symbols and markets.

Get stock quote

Get a stock quote using multiple APIs. The first successful response will be returned.

GET
/ stock

Parameters

Name Type Description Required
symbol string Optional

Response

{
  "type": "object",
  "properties": {
    "price": {
      "type": "number",
      "description": "The current price of the stock",
      "example": 100.0
    }
  },
  "required": [
    "price"
  ]
}
curl --request GET \
  --url "https://www.apikiss.com/api/v1/stock?symbol=AAPL" \
  --header 'Authorization: Bearer <token>'
{
  "type": "object",
  "properties": {
    "price": {
      "type": "number",
      "description": "The current price of the stock",
      "example": 100.0
    }
  },
  "required": [
    "price"
  ]
}

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"

Path Parameters

symbol
string

Response

200 - application/json
price
number
required

The current price of the stock

Example: 100.0

Try it out

Don't have a key? Sign up to get one for free.

Response

Click "Send Request" to see the response...