Marketplace

List a marketplace collection

GET/v1/marketplace-collections/{collectionKey}

Returns one curated shop section in the order you set, including the items curated into it that the main shop does not list.

AuthorizationBearer <token>

Paste a project API key (no 'Bearer ' prefix). Create one in the dashboard under API keys.

In: header

Path Parameters

collectionKey*string

Query Parameters

PlayerId?string

Your own id for the player.

LanguageCode?string

Preferred locale for collection/item text; null = each text's default locale.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/marketplace-collections/string"
{  "key": "string",  "name": "string",  "description": null,  "images": {    "property1": "string",    "property2": "string"  },  "items": [    {      "marketplaceItemKey": "string",      "name": "string",      "description": null,      "images": {        "property1": "string",        "property2": "string"      },      "priceInPoints": 0,      "contents": [        {          "catalogItemKey": "string",          "value": {            "type": "number",            "value": 0.1          }        }      ],      "status": "Purchasable",      "isPurchasable": true,      "occurrenceNumber": 0,      "remainingStock": null,      "remainingPurchases": null,      "availableUntilUtc": null    }  ]}