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

# List card designs

> Returns the card designs. By default only active designs (usable for new cards) are returned; pass the `status` query parameter to widen or change the filter.



## OpenAPI

````yaml /api-reference/openapi.json get /card-designs/
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sandbox.api.reap.global
    description: Sandbox
  - url: https://prod.api.reap.global
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
paths:
  /card-designs/:
    get:
      tags:
        - Card Designs
      summary: List card designs
      description: >-
        Returns the card designs. By default only active designs (usable for new
        cards) are returned; pass the `status` query parameter to widen or
        change the filter.
      operationId: list_card-designs
      parameters:
        - name: status
          in: query
          required: false
          schema:
            description: >-
              Filter card designs by status (comma-separated). Defaults to
              active designs only.
            type: array
            items:
              type: string
              enum:
                - ACTIVE
                - ARCHIVED
              example: ACTIVE
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Response for status 200
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/CardDesign'
                      description: Card design resource
                    description: Card designs assigned to the project
                required:
                  - items
components:
  schemas:
    CardDesign:
      type: object
      properties:
        id:
          type: string
          description: Card design identifier
        name:
          type: string
          description: Card design name
        isPhysicalCapable:
          type: boolean
          description: Whether this design can be used for physical card shipments
        embossNameSupported:
          type: boolean
          description: Whether this design supports embossing the cardholder name
        isDefault:
          type: boolean
          description: Whether this is the project's default card design
        status:
          type: string
          enum:
            - ACTIVE
            - ARCHIVED
          description: Card design availability
          example: ACTIVE
      required:
        - id
        - name
        - isPhysicalCapable
        - embossNameSupported
        - isDefault
        - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````