Skip to main content
GET
/
v1
/
orders
Get orders
curl --request GET \
  --url https://api.quickbutik.com/v1/orders \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "order_id": "12345",
    "date_created": "2025-01-29 11:35:39",
    "total_amount": "148.95",
    "status": "1",
    "products": [
      {
        "id": 123,
        "product_id": 123,
        "variant_id": 123,
        "title": "<string>",
        "price": "<string>",
        "qty": 123,
        "sku": "<string>",
        "variant": "<string>",
        "weight": "<string>",
        "status": "<string>",
        "image": "<string>",
        "app": {
          "productpackages": [
            {
              "product_id": 456,
              "variant_id": 789,
              "title": "T-shirt Red",
              "variant": "Large",
              "qty": 2,
              "sku": "TSHIRT-RED-L",
              "price": "299"
            }
          ]
        }
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Query Parameters

Example:
offset
integer
default:0
Required range: x >= 0
limit
integer
default:1000
Required range: 1 <= x <= 1000
sort_order
enum<string>
default:desc
Available options:
asc,
desc
order_by
enum<string>
default:order_id
Available options:
price,
date,
order_id
include_details
boolean
default:false
order_id
string
from_date_paid
string
Example:
to_date_paid
string
Example:
from_status_date
string
Example:
status
string
Example:
apps_load
boolean
Example:

Response

order_id
string
Example:
date_created
string
Example:
total_amount
string
Example:
status
string
Example:
products
object[]