Get Single product

Gets the information about a single product.

Supported arguments

The following arguments are supported by this API:

GET /products/{id}

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Param

Param
Param Tpe
Type
Required
Description

id

path

Number

Yes

The ID of the product

Response

{
  "statusCode": 200,
  "message": "string",
  "data": {
    "productId": "number",
    "title": "string",
    "image": "string",
    "slug": "string",
    "platform": "string",
    "genres": [
      "string"
    ],
    "regions": [
      "string"
    ],
    "productTypes": [
      "string"
    ],
    "languages": [
      "string"
    ],
    "releaseDate": "string",
    "createdDate": "string",
    "minPrice": {
      "price": "number",
      "belongsToYou": true,
      "offerId": "number"
    },
    "maxPrice": "number",
    "productVersion": "string",
    "worksOn": [
      "string"
    ],
    "activationCountries": [
      "string"
    ],
    "productTag": "string",
    "formFields": [
      {
        "name": "userid",
        "type": "string"
      },
      {
        "name": "device",
        "type": "enum",
        "value": "android | ios"
      }
    ]
  }
}

formFields

  • Returned only for Top-up products. ( Direct Topup Webhook ).

  • Defines the customer input fields required to complete the order (e.g., userid, zoneid, device).

  • Not present for Digital Key / Standard products.

  • Each field object contains:

    • name – field identifier

    • typestring or enum

    • value – allowed options when type is enum (e.g., "android | ios").

get
Path parameters
idnumberRequired
Header parameters
AuthorizationstringRequired

Authorization token in Bearer format. Example: Bearer dvakycjgw8liyd278y

Responses
chevron-right
200Success
application/json
get
/products/{id}

Last updated