GET
/
coupon
/
list
curl --request GET \
  --url https://api.abacatepay.com/v1/coupon/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "DEYVIN_20",
      "notes": "Cupom de desconto pro meu público",
      "maxRedeems": -1,
      "redeemsCount": 0,
      "discountKind": "PERCENTAGE",
      "discount": 123,
      "devMode": true,
      "status": "ACTIVE",
      "createdAt": "2025-05-25T23:43:25.250Z",
      "updatedAt": "2025-05-25T23:43:25.250Z",
      "metadata": {}
    }
  ],
  "error": "<any>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Lista de cupons retornada com sucesso.

The response is of type object.