# Prediction Market Insiders `GET` `https://api.unusualwhales.com/api/predictions/insiders` Returns potential insider activity on prediction markets. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Response (200) | Field | Type | Description | |-------|------|-------------| | `categories` | array[string] | | | `data` | array[Prediction Market Insider] | | | `tag_info` | array[Prediction Tag Info] | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/predictions/insiders" \ -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/insiders", 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 ], "tag_info": [ null ] } } ```