> ## 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.

# Retrieve abandoned cart details

> Retrieves details of a specific abandoned cart using its ID. The response includes information about the cart, such as customer email, status, and product details.

**Usage:** Use this endpoint to view details of a forgotten cart, aiding in customer follow-up or analytics.



## OpenAPI

````yaml get /cart-recovery/{id}
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/{id}:
    get:
      tags:
        - Cart Recovery
      summary: Retrieve abandoned cart details
      description: >-
        Retrieves details of a specific abandoned cart using its ID. The
        response includes information about the cart, such as customer email,
        status, and product details.


        **Usage:** Use this endpoint to view details of a forgotten cart, aiding
        in customer follow-up or analytics.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Abandoned cart data retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbandonedCart'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    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

````