Skip to main content
GET
/
v2
/
item-offers
/
templates
/
{game}
Get item offer template
curl --request GET \
  --url https://api.gameboost.com/v2/item-offers/templates/{game} \
  --header 'Authorization: Bearer <token>'
{
  "template": {
    "game": "league-of-legends",
    "title": "Sample Item Offer Title",
    "slug": "(optional) sample-item-offer-slug",
    "description": "Sample description of the item offer.",
    "price": 10.99,
    "stock": 100,
    "min_quantity": 1,
    "delivery_time": {
      "duration": 30,
      "unit": "minutes/hours/days"
    },
    "delivery_instructions": "(optional) Sample delivery instructions",
    "image_urls": [
      "http://example.com/sample-image.jpg"
    ],
    "item_data": {}
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

game
string
required

The slug of the game. Can be retrieved from the list of games.

Response

Item offer creation template for a specific game

template
object
I