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

# List all abandoned carts

> Lists all abandoned carts for a store with optional filtering by cart status or product ID. Supports pagination.

**Usage:** Retrieve a list of all forgotten carts for a store. This can help in analyzing trends and planning follow-up strategies.



## OpenAPI

````yaml get /cart-recovery
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /cart-recovery:
    get:
      tags:
        - Cart Recovery
      summary: List all abandoned carts
      description: >-
        Lists all abandoned carts for a store with optional filtering by cart
        status or product ID. Supports pagination.


        **Usage:** Retrieve a list of all forgotten carts for a store. This can
        help in analyzing trends and planning follow-up strategies.
      parameters:
        - name: status
          in: query
          schema:
            type: string
            enum:
              - open
              - recovered
              - expired
        - name: product_id
          in: query
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
        - name: page
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Abandoned carts retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCartsList'
        '401':
          description: Unauthorized
components:
  schemas:
    AbandonedCartsList:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
            page:
              type: integer
            limit:
              type: integer
            has_more:
              type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/AbandonedCart'
    AbandonedCart:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            store_id:
              type: string
            product_id:
              type: string
            customer_email:
              type: string
            amount:
              type: number
            status:
              type: string
            recovery_emails_sent:
              type: integer
            created_at:
              type: string
              format: date-time
            stripe_checkout_session_id:
              type: string
            product:
              type: object
              properties:
                id:
                  type: string
                name:
                  type: string

````