# Unusual Prediction Markets `GET` `https://api.unusualwhales.com/api/predictions/unusual` Returns prediction markets with unusual activity. Categories: Crypto, Culture, Finance, Politics, Science, Sports, Technology. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `categories` | string | No | | | `limit` | integer | No | | | `offset` | integer | No | | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `categories` | array[string] | | | `data` | array[Unusual Prediction Market] | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/predictions/unusual" \ -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/unusual", 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 ] } } ```