List Orders

GET /api/v1/orders
ParameterDescription
statusFilter by status (1-7)
customer_idFilter by customer
date_fromOrders after this date (YYYY-MM-DD)
date_toOrders before this date
searchSearch order ID, name, email

Status Values

1=Pending, 2=Processing, 3=Complete, 4=Declined, 5=Failed, 6=Refunded, 7=Cancelled

curl -H "Authorization: Bearer KEY:SECRET" 
     "https://example.com/api/v1/orders?status=3&date_from=2026-01-01"

Get Order

GET /api/v1/orders/{id}

Accepts numeric ID or cart_order_id string. Returns order with items, notes, and taxes.