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

# List orders



## OpenAPI

````yaml /openAPI.json get /api/v2/orders
openapi: 3.0.2
info:
  title: Laravel
  version: 2.0.0
servers:
  - url: https://rcur.app
security:
  - '': []
tags:
  - name: Customers
  - name: Payment Links
  - name: Subscriptions
  - name: Follow-ups
  - name: Orders
  - name: Payments
  - name: Mandates
  - name: Products
  - name: Organization
paths:
  /api/v2/orders:
    get:
      tags:
        - Orders
      summary: List orders
      parameters:
        - name: page
          in: query
          description: Page number for pagination
          required: false
          schema:
            default: 1
            type: integer
      responses:
        '200':
          description: List of orders
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Order'
                  links:
                    type: object
                    properties:
                      first:
                        type: string
                      last:
                        type: string
                      prev:
                        type: string
                        nullable: true
                      next:
                        type: string
                        nullable: true
                  meta:
                    type: object
                    properties:
                      current_page:
                        type: integer
                        example: 1
                      last_page:
                        type: integer
                        example: 1
                      per_page:
                        type: integer
                        example: 15
                      total:
                        type: integer
                        example: 10
components:
  schemas:
    Order:
      type: object
      required:
        - id
        - status
        - total_amount
        - currency
        - created_at
      properties:
        id:
          type: string
          example: ord_abc123
        order_number:
          type: string
          nullable: true
          example: ORD-2025-001
        status:
          enum:
            - unpaid
            - pending
            - paid
            - completed
            - charged_back
            - cancelled
          type: string
          example: paid
        first_name:
          type: string
          example: John
        last_name:
          type: string
          example: Doe
        email:
          type: string
          example: john@example.com
        organization_name:
          type: string
          nullable: true
          example: Acme B.V.
        phone:
          type: string
          nullable: true
          example: '+31612345678'
        address:
          type: string
          nullable: true
          example: Keizersgracht 1
        postal_code:
          type: string
          nullable: true
          example: 1015AA
        city:
          type: string
          nullable: true
          example: Amsterdam
        country:
          description: ISO 3166-1 alpha-2 country code
          type: string
          nullable: true
          example: NL
        vat_number:
          type: string
          nullable: true
          example: NL123456789B01
        carrier:
          type: string
          nullable: true
          example: PostNL
        tracktrace:
          type: string
          nullable: true
          example: 3STEST1234567
        wc_order_id:
          type: integer
          nullable: true
          example: 5678
        wc_order_number:
          type: string
          nullable: true
          example: WC-5678
        subscription:
          type: string
          nullable: true
          example: sub_abc123
        subscription_status:
          enum:
            - active
            - cancelled
            - completed
          type: string
          nullable: true
          example: active
        cancel_subscription_at:
          type: string
          nullable: true
          example: '2025-12-31'
        total_amount:
          type: string
          example: '59.98'
        currency:
          enum:
            - EUR
          type: string
          example: EUR
        created_at:
          type: string
          example: '2025-01-15 10:30:00'
        products:
          type: array
          items:
            $ref: '#/components/schemas/OrderProduct'
    OrderProduct:
      type: object
      required:
        - quantity
        - product
      properties:
        next_order:
          type: string
          nullable: true
          example: '2025-02-01'
        quantity:
          type: integer
          example: 2
        product:
          type: object
          properties:
            id:
              type: string
              example: prod_abc123
            name:
              type: string
              example: Premium Plan
            type:
              enum:
                - once
                - subscription
                - shipping_costs
              type: string
              example: subscription
            amount:
              type: string
              example: '29.99'
            currency:
              enum:
                - EUR
              type: string
              example: EUR
            interval:
              enum:
                - day
                - week
                - month
                - year
              type: string
              nullable: true
              example: month
            times:
              type: integer
              nullable: true
              example: 12
            wc_product_id:
              type: integer
              nullable: true
              example: 1234

````