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

# List Checkout Sessions



## OpenAPI

````yaml GET /v1/checkout/sessions
openapi: 3.1.0
info:
  title: Plexos Pay API
  description: Mobile Money Payment Gateway for African Markets
  version: 1.0.0
  contact:
    name: Plexos Pay
    url: https://plexospay.com
servers:
  - url: https://api.plexospay.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/checkout/sessions:
    get:
      tags:
        - Checkout Sessions
      summary: List checkout sessions
      operationId: listCheckoutSessions
      parameters:
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/starting_after'
        - name: status
          in: query
          schema:
            $ref: '#/components/schemas/CheckoutSessionStatus'
      responses:
        '200':
          description: Paginated list of checkout sessions
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CheckoutSession'
                  hasMore:
                    type: boolean
components:
  parameters:
    limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 20
      description: Max items per page (1-100)
    starting_after:
      name: starting_after
      in: query
      schema:
        type: string
      description: Cursor — ID of the last item from previous page
  schemas:
    CheckoutSessionStatus:
      type: string
      enum:
        - OPEN
        - COMPLETED
        - EXPIRED
    CheckoutSession:
      type: object
      properties:
        id:
          type: string
          example: cs_abc123
        url:
          type: string
          example: https://pay.plexospay.com/cs_abc123
        amount:
          type: string
          example: '30000'
        currency:
          $ref: '#/components/schemas/Currency'
        status:
          $ref: '#/components/schemas/CheckoutSessionStatus'
        returnUrl:
          type: string
          nullable: true
        completionUrl:
          type: string
          nullable: true
        customerId:
          type: string
          nullable: true
        paymentIntentId:
          type: string
          nullable: true
        items:
          type: array
          items:
            $ref: '#/components/schemas/CheckoutSessionItem'
        metadata:
          $ref: '#/components/schemas/Metadata'
        expiresAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    Currency:
      type: string
      enum:
        - CVE
        - AOA
      description: ISO currency code
    CheckoutSessionItem:
      type: object
      properties:
        id:
          type: string
        productId:
          type: string
          nullable: true
        name:
          type: string
        description:
          type: string
          nullable: true
        quantity:
          type: integer
        unitPrice:
          type: string
        currency:
          $ref: '#/components/schemas/Currency'
    Metadata:
      type: object
      additionalProperties: true
      description: Arbitrary key-value metadata (max 50 keys)
      nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with `sk_live_` or `sk_test_`

````