> ## Documentation Index
> Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Gift Cards

> Get all gift cards

## Query Parameters

<ParamField query="status" type="string">
  Filter by status: `enabled`, `disabled`
</ParamField>

<ParamField query="page" type="number" default="1">
  Page number
</ParamField>

<ParamField query="limit" type="number" default="50">
  Items per page
</ParamField>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "gift_cards": [
        {
          "id": "gc_abc123",
          "code": "GIFT-ABCD-1234-EFGH",
          "initial_value": 5000,
          "balance": 3500,
          "currency": "USD",
          "status": "enabled",
          "customer_id": "cust_xyz789",
          "note": "Birthday gift",
          "expires_at": "2025-01-15T00:00:00Z",
          "created_at": "2024-01-15T10:30:00Z"
        }
      ],
      "pagination": {
        "page": 1,
        "limit": 50,
        "total": 45
      }
    }
  }
  ```
</ResponseExample>
