Skip to main content
GET
/
v2
/
item-offers
/
{itemOffer}
/
orders
List orders for an item offer
curl --request GET \
  --url https://api.gameboost.com/v2/item-offers/{itemOffer}/orders \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "item_offer_id": 123,
      "game": {
        "id": 123,
        "name": "<string>",
        "slug": "<string>"
      },
      "buyer": {
        "id": 123,
        "username": "<string>"
      },
      "rating": {
        "id": 123,
        "labels": [
          "<string>"
        ],
        "rating": 123,
        "comment": "<string>",
        "created_at": 123,
        "updated_at": 123
      },
      "title": "<string>",
      "description": "<string>",
      "quantity": 123,
      "parameters": {},
      "status": "pending",
      "delivery_time": {
        "duration": 123,
        "unit": "minutes",
        "format": "<string>",
        "format_long": "<string>",
        "seconds": 123
      },
      "price_eur": "<string>",
      "price_usd": "<string>",
      "unit_price_eur": "<string>",
      "unit_price_usd": "<string>",
      "created_at": 123,
      "updated_at": 123,
      "purchased_at": 123,
      "completed_at": 123,
      "refunded_at": 123
    }
  ],
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "per_page": 123,
    "to": 123,
    "total": 123
  },
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Search item orders by id or title

filter[id]
string

Filter by exact id. Supports comma-separated values for multiple matches.

Example:

"3,6,9"

filter[buyer_id]
string

Filter by exact buyer id. Supports comma-separated values for multiple matches.

Example:

134951

filter[status]
enum<string>

Filter by order status

Available options:
pending,
in_delivery,
delivered,
refunded
Example:

"pending"

filter[created_at]
string

Filter by created at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).

Example:

"2019-08-14,2025-12-31"

filter[updated_at]
string

Filter by updated at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).

Example:

"2025-10-05"

filter[sold_at]
string

Filter by sold at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).

Example:

"2019-08-14,2025-12-31"

filter[completed_at]
string

Filter by completed at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).

Example:

"2019-08-14,2025-12-31"

filter[refunded_at]
string

Filter by refunded at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).

Example:

"2019-08-14,2025-12-31"

sort
enum<string>
default:-updated_at

Sort by field. Prefix with - for descending order.

Available options:
id,
-id,
price,
-price,
quantity,
-quantity,
delivery_time,
-delivery_time,
created_at,
-created_at,
updated_at,
-updated_at,
sold_at,
-sold_at,
completed_at,
-completed_at
Example:

"-updated_at"

per_page
integer
default:15

Items per page (max 50)

Required range: 1 <= x <= 50

Response

A paginated list of item orders for an offer

data
object[]
meta
object
I