Skip to main content

Getting Started

You can quickly check the current status of any order using its unique order ID. This guide shows you how to retrieve the latest status information for tracking order progress.

Prerequisites

  1. Existing order - The order_id for the order you want to retrieve
  2. Authentication token - Follow our authentication guide to get your access token

Order Status Values

Orders progress through these status values:
  • PLACED - Order has been created and placed
  • AWAITING_PAYMENT - Order is awaiting payment processing
  • AWAITING_TOKEN_DELIVERY - Order is awaiting token/share delivery
  • COMPLETED - Order has been successfully completed
  • CANCELLED - Order was cancelled

Get Order Status

Use the order status endpoint to retrieve just the current status:
curl -X GET "https://sandbox.api.rime.finance/v1/orders/${ORDER_ID}/status" \
  -H "Authorization: Bearer ${ACCESS_TOKEN}" \
  -H "Content-Type: application/json"

Response

The endpoint returns the current status as a string:
"AWAITING_PAYMENT"

Get Full Order Details

If you need complete order information including status, use the full order endpoint:
curl -X GET "https://sandbox.api.rime.finance/v1/orders/${ORDER_ID}" \
  -H "Authorization: Bearer ${ACCESS_TOKEN}" \
  -H "Content-Type: application/json"

Next Steps

I