# Get deal loss reasons
You can return a list of deal loss reasons.
GET
/deal-loss-reasons/
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H
"Authorization: Token <your_64_char_api_key>" -H "Accept: */*; version=2" "https://<your_app_subdomain>.user.com/api/public/deal-loss-reasons/"
# Response
{
"count": 5,
"next": null,
"previous": null,
"results": [
{
"id": 2,
"reason": "Chose competitor"
},
{
"id": 4,
"reason": "Expects other features"
},
{
"id": 5,
"reason": "my edited reason"
},
{
"id": 3,
"reason": "Not interested"
},
{
"id": 1,
"reason": "Too expensive"
}
]
}