Unusual Whales UnusualWhales API

Ticker Exchange Mapping

GET https://api.unusualwhales.com/api/stock-directory/ticker-exchanges

Request

Security: Bearer Auth Authorization: Bearer <token>

Responses

200 500

Response Body 200 OK

exchange string

The exchange where the ticker is listed.

ticker string

The ticker symbol.

Try It GET

Request Sample
curl -X GET "https://api.unusualwhales.com/api/stock-directory/ticker-exchanges" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "exchange": "nasdaq",
      "ticker": "AAPL"
    },
    {
      "exchange": "nasdaq",
      "ticker": "MSFT"
    },
    {
      "exchange": "nyse",
      "ticker": "JPM"
    },
    {
      "exchange": "nyse",
      "ticker": "BAC"
    }
  ]
}