GET /v1/orders
Scope
read_orders
Request parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
limit | query | integer | optional | |
offset | query | integer | optional | |
status | query | object | optional |
Response example
{
"data": [
{
"id": "1001",
"ordered_at": "2026-06-01T12:00:00+09:00",
"status": "init",
"payment_method": "card",
"total": {
"amount": 3200,
"currency": "JPY"
},
"is_subscription": true
}
],
"pagination": {
"limit": 0,
"offset": 0,
"total": 0
}
}
Description
List orders (header only; buyer PII excluded)
Error response example
{
"error": {
"code": "insufficient_scope",
"message": "requires scope 'read_orders'",
"request_id": "req_01H..."
}
}
Possible errors: 401 / 403