Get Products
The following is an API endpoint to get detailed information about our Product.
Used to get detailed information of our product.
Endpoint
/api/v4/product/detail
Headers
- Name
X-Client-Id
- Type
- uuid
- Description
API Key (provided by BANGJEFF or retrieve from our Reseller Portal).
Please refer to Authentication for detail
- Name
X-Request-Time
- Type
- YYYY-MM-DDTHH:mm:ssZ
- Description
Request Time should be ISO 8601 and will be used to generate Signature.
Please refer to Authentication for detail
- Name
X-Signature
- Type
- string
- Description
Signature Generated using SHA-256 algorithm.
Please refer to Authentication for detail
- Name
Content-Type
- Type
- application/json
- Description
Content type application/json
Body
- Name
region
- Type
- string
- Description
Please refer to Available Region
- Name
productCode
- Type
- string
- Description
Product Code from BANGJEFF
Please refer to Get Products
Request
Example
POST
/api/v4/balancecurl --location --request POST 'https://sandbox-api.bangjeff.com/api/v4/product/detail' \
--header 'X-Client-Id: {{api_key}}' \
--header 'X-Request-Time: {{request_time}}' \
--header 'X-Signature: {{signature}}' \
--header 'Content-Type: application/json' \
--data '{
"region": "ID",
"productCode": "GENSHIN"
}'
Response
Example
{
"rc": "00", // Check Response Code List
"message": "Success", // Check Response Message List
"data": {
"code": "GENSHIN", // Product Code
"name": "Genshin Impact", // Product Name
"status": "ACTIVE", // ACTIVE, INACTIVE
"inputs": [
{
"name": "UID",
"type": "number", // text, number, select, password
"title": "UID",
"options": []
},
{
"name": "Server",
"type": "select", // text, number, select, password
"title": "Server",
"options": [
{
"value": "os_asia",
"title": "Asia"
},
{
"value": "os_usa",
"title": "America"
},
{
"value": "os_euro",
"title": "Europe"
},
{
"value": "os_cht",
"title": "TW_HK_MO"
}
]
}
]
}
}