LedgerFlow
    • Register new account
      POST
    • Health Check
      GET
    • Get account by username
      GET
    • Get account by email
      GET
    • Get account by telegram ID
      GET
    • Create new order
      POST
    • Get order by ID
      GET
    • Get account balance
      GET
    • List pending orders
      GET
    • Schemas
      • RegisterAccountRequest
      • AccountResponse
      • HealthResponse
      • CreateOrderRequest
      • CreateOrderResponse
      • OrderResponse
      • BalanceResponse
      • AdminOrdersResponse

      List pending orders

      Developing
      GET
      /admin/orders

      Request

      None

      Request Code Samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/admin/orders'

      Responses

      🟢200Success
      application/json
      Body

      Example
      {
          "total_count": 0,
          "orders": [
              {
                  "order_id": "string",
                  "account_id": 0,
                  "amount": "string",
                  "token_address": "string",
                  "chain_id": 0,
                  "status": "string",
                  "transaction_hash": "string",
                  "created_at": "string",
                  "updated_at": "string"
              }
          ]
      }
      Modified at 2025-07-10 08:56:00
      Previous
      Get account balance
      Next
      RegisterAccountRequest
      Built with