---
title: "Get coupon details"
method: GET
path: "/api/v1/coupons/{coupon_id}"
tags: ["Coupons"]
---

# Get coupon details

`GET /api/v1/coupons/{coupon_id}`

## Path parameters

- `coupon_id` string, MeteroidId, required

## Response `200`

Coupon details

- Coupon
  - `archived_at` string, date-time, nullable
  - `code` string, required
  - `created_at` string, date-time, required
  - `description` string, nullable
  - `disabled` boolean, required
  - `discount` union, required
    - PercentageDiscount
      - `percentage` string, required
    - FixedDiscount
      - `amount` string, required
      - `currency` string, required
  - `expires_at` string, date-time, nullable
  - `id` string, MeteroidId, required
  - `plan_ids` PlanId[], required
  - `recurring_value` integer, nullable
  - `redemption_count` integer, required
  - `redemption_limit` integer, nullable
  - `reusable` boolean, required

## Other responses

- `401` — Unauthorized
- `404` — Coupon not found
- `429` — Too many requests

## Changes

- **2026-08-12** (v1) `4e013b4e4a8f` — 2 breaking, 4 info
  - the response property `description` became nullable for the status `200`
  - the response property `description` became optional for the status `200`
  - added the optional property `archived_at` to the response with the `200` status
  - added the required property `created_at` to the response with the `200` status
  - …2 more
- **2026-03-31** (v1) `ee465c53a423` — 2 breaking, 1 info
  - the `discount/oneOf[#/components/schemas/FixedDiscount]/amount` response's property format changed from `decimal` to no format for status `200`
  - the `discount/oneOf[#/components/schemas/PercentageDiscount]/percentage` response's property format changed from `decimal` to no format for status `200`
  - response discriminator property name changed for `discount` response property from `discriminator` to `type` for the response status `200`
- **2026-03-27** (v1) `de35c02bb0d2` — 2 warning, 1 info
  - added the new `TOO_MANY_REQUESTS` enum value to the `code` response property for the response status `401`
  - added the new `TOO_MANY_REQUESTS` enum value to the `code` response property for the response status `404`
  - added the non-success response with the status `429`
- **2026-03-20** (v1) `51c7018cc5ef` — 1 info
  - endpoint added
- **2025-07-09** (v1) `dece17f86f99` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/meteroid-oss/apis/meteroid/changes/api/v1/coupons/:coupon_id/get.md)

---

[API](https://skmtc.dev/meteroid-oss/apis/meteroid.md) · [All operations](https://skmtc.dev/meteroid-oss/apis/meteroid/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/meteroid-oss/meteroid/revisions/03f9d8ae5c5e/schema)
