Skip to main content

Category

API Request

TypeValue
HTTP MethodPOST or GET
API Endpointhttps://api.neropass.com/partner/v1/category

Response Body

{
"success": true,
"data": [
{
"code": "GML",
"name": "Mobile Legends",
"slug": "mobile-legends",
"isActive": true,
"destFormat": "{userId}|{serverId}",
"inputs": [
{
"name": "userId",
"title": "User ID",
"type": "text",
"options": []
},
{
"name": "serverId",
"title": "Server ID",
"type": "text",
"options": []
}
]
},
{
"code": "GGI",
"name": "Genshin Impact",
"slug": "genshin-impact",
"isActive": true,
"destFormat": "{userId}|{serverId}",
"inputs": [
{
"name": "userId",
"title": "User ID",
"type": "text",
"options": []
},
{
"name": "serverId",
"title": "Server",
"type": "select",
"options": [
{
"title": "America",
"value": "os_usa"
},
{
"title": "Europe",
"value": "os_euro"
},
{
"title": "Asia",
"value": "os_asia"
},
{
"title": "TW, HK, MO",
"value": "os_cht"
}
]
}
]
}
],
"errors": null
}
info
  • destFormat is the format of dest that you need to send on Order.
  • inputs can has 2 type, which is text and select.
  • When input type are select, you need to send value from options on Order.