Auth
Validate App Credentials
Checks whether an appid/appkey pair is valid and returns basic app info. No prior authentication required — this is the credential verification mechanism itself. Useful for diagnostics before integrating other endpoints.
POST
/api/vaneltonid/app_validate.php
This endpoint does not require an
Authorization header — the credentials being validated are passed in the request body.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
| appid | string | required | Your app's package name (e.g. com.myapp.game) |
| appkey | string | required | Your app's secret key from the Developer Console |
Test this endpoint
Body
Responses 200
The response is always 200. Use the valid field to determine the result.
{
"valid": true,
"app": {
"appid": "com.myapp.game",
"name": "My App",
"company": "My Company",
"type": "game",
"category": "action"
}
}
{ "valid": false }
Response fields (valid)
| Field | Type | Description |
|---|---|---|
| valid | bool | true if the credentials are recognized |
| app.appid | string | App package name |
| app.name | string | App display name |
| app.company | string | Publisher / company name |
| app.type | string | App type (e.g. game, app) |
| app.category | string | App category (e.g. action, utility) |