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

# List orders

> Returns the first page of orders with defaults (pageSize 30, pageNumber 0, no filters).
Use the POST variant for pagination and date filtering.




## OpenAPI

````yaml /openapi.yaml get /ramp/orders
openapi: 3.1.0
info:
  title: FX API
  version: 1.0.0
  description: >
    API for managing FX operations including onboarding, quotes, orders, and
    customer management.

    This API provides endpoints for managing customers, bank accounts, crypto
    wallets, orders, and webhooks.
servers:
  - url: https://api.etherfuse.com
    description: Production API
  - url: https://api.sand.etherfuse.com
    description: Sandbox API (for testing)
security: []
tags:
  - name: Lookup
    description: Public endpoints for looking up stablebond and exchange rate data
  - name: Assets
    description: Get available assets for ramping
  - name: Onboarding
    description: Customer onboarding and KYC
  - name: Bank Accounts
    description: Manage customer bank accounts
  - name: Agreements
    description: Handle customer agreements and consents
  - name: Quotes
    description: Get quotes for conversions
  - name: Orders
    description: Create and manage orders
  - name: Swaps
    description: Create and manage swaps
  - name: Customers
    description: Manage customers
  - name: Crypto Wallets
    description: Manage crypto wallets
  - name: Webhooks
    description: Manage webhook subscriptions
  - name: Organizations
    description: Manage organizations and child organizations
paths:
  /ramp/orders:
    get:
      tags:
        - Orders
      summary: List orders
      description: >
        Returns the first page of orders with defaults (pageSize 30, pageNumber
        0, no filters).

        Use the POST variant for pagination and date filtering.
      responses:
        '200':
          description: Orders retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    PagedResponse:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
          description: Array of items in the current page
        totalItems:
          type: integer
          description: Total number of items
        pageSize:
          type: integer
          description: Number of items per page
        pageNumber:
          type: integer
          description: Current page number
        totalPages:
          type: integer
          description: Total number of pages
      example:
        items: []
        totalItems: 0
        pageSize: 10
        pageNumber: 0
        totalPages: 0
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key for authentication. Pass the key directly (e.g., `Authorization:
        your-api-key`). Do not use a `Bearer` prefix.

````