# Commodity Series `GET` `https://api.unusualwhales.com/api/commodities/{name}` **Requires Advanced+ tier (Advanced, Enterprise, or Enterprise + Kafka).** Returns a long-running price series for a commodity. Available names: wti, brent, natural-gas, copper, aluminum, wheat, corn, cotton, sugar, coffee, all-commodities. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `name` | string | Yes | | ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `interval` | string | No | Series cadence. Defaults to monthly. | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `data` | array[Series Point] | | | `interval` | string | | | `name` | string | | | `unit` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/commodities/{name}" \ -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/commodities/{name}", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "data": [ null ], "interval": "string", "name": "string", "unit": "string" } } ```