> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/user/retrieve-coupon-details.md).

# Retrieve Coupon Details

Use the `GET /user/coupons/{id}/` endpoint to retrieve the details of a specific coupon by providing its unique ID.

#### Parameters

| **Name** | **Description**                                                              |
| -------- | ---------------------------------------------------------------------------- |
| `id`     | *Required* - A unique integer value identifying the coupon. (Path Parameter) |

#### Responses

**200 OK**

**Example Response**

```json
{
  "id": 123,
  "code": "DISCOUNT2024",
  "value": "10.00",
  "expiration_date": "2024-12-31T23:59:59Z"
}
```
