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

    AdminOrdersResponse

    {
        "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"
            }
        ]
    }
    Built with