Unusual Whales UnusualWhales API

Top Movers

GET https://api.unusualwhales.com/api/market/movers

Request

Security: Bearer Auth Authorization: Bearer <token>

Responses

200 422 500

Response Body 200 OK

last_updated string
most_active array[Mover]
top_gainers array[Mover]
top_losers array[Mover]
Try It GET

Request Sample
curl -X GET "https://api.unusualwhales.com/api/market/movers" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": {
    "last_updated": "string",
    "most_active": [
      null
    ],
    "top_gainers": [
      null
    ],
    "top_losers": [
      null
    ]
  }
}