Unusual Whales UnusualWhales API

Prediction Market Insiders

GET https://api.unusualwhales.com/api/predictions/insiders

Request

Security: Bearer Auth Authorization: Bearer <token>

Responses

200 422 500

Response Body 200 OK

categories array[string]
Example: ["Crypto","Culture","Finance","Games","Mentions","Other","Politics","Sports","Weather"]
data array[Prediction Market Insider]
tag_info array[Prediction Tag Info]
Try It GET

Request Sample
curl -X GET "https://api.unusualwhales.com/api/predictions/insiders" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": {
    "categories": [
      "Crypto",
      "Culture",
      "Finance",
      "Games",
      "Mentions",
      "Other",
      "Politics",
      "Sports",
      "Weather"
    ],
    "data": [
      null
    ],
    "tag_info": [
      null
    ]
  }
}