# Failures to Deliver `GET` `https://api.unusualwhales.com/api/shorts/{ticker}/ftds` Returns the short failures to deliver per day for the given ticker starting from the given date. If no date is given, returns the data for the current/last market day. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Path Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `ticker` | SingleTicker | Yes | A single ticker | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `date` | date | The date for the failures to deliver. | | `price` | Stock Close Price | The close stock price of the ticker. | | `quantity` | string | The amount of failures to deliver for the day. | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/shorts/{ticker}/ftds" \ -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/shorts/{ticker}/ftds", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "date": "2023-04-10", "price": "45.75", "quantity": 1250 }, { "date": "2023-04-11", "price": "46.23", "quantity": 8500 }, { "date": "2023-04-12", "price": "45.92", "quantity": 4200 }, { "date": "2023-04-13", "price": "46.45", "quantity": 780 }, { "date": "2023-04-14", "price": "46.78", "quantity": 1500 }, { "date": "2023-04-17", "price": "47.12", "quantity": 5670 }, { "date": "2023-04-18", "price": "47.45", "quantity": 3200 } ] } ```