# Prediction Market Whales `GET` `https://api.unusualwhales.com/api/predictions/whales` Returns large prediction market traders. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Response (200) | Field | Type | Description | |-------|------|-------------| | `categories` | array[string] | | | `data` | array[Prediction Market Whale Position] | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/predictions/whales" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/predictions/whales", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "categories": [ "Crypto", "Culture", "Finance", "Games", "Mentions", "Other", "Politics", "Sports", "Weather" ], "data": [ null ] } } ```