# Active or Delisted Securities `GET` `https://api.unusualwhales.com/api/companies/listings` **Requires Advanced+ tier (Advanced, Enterprise, or Enterprise + Kafka).** All US-traded securities, optionally filtered to delisted as of a given date. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `status` | string | No | | | `date` | string | No | Only used when status=delisted. ISO date. | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `date` | string | | | `listings` | array[Listing] | | | `status` | string | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/companies/listings" \ -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/companies/listings", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": { "date": "string", "listings": [ null ], "status": "string" } } ```