Console
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

FieldTypeRequiredDescription
appidstringrequiredYour app's package name (e.g. com.myapp.game)
appkeystringrequiredYour app's secret key from the Developer Console

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)

FieldTypeDescription
validbooltrue if the credentials are recognized
app.appidstringApp package name
app.namestringApp display name
app.companystringPublisher / company name
app.typestringApp type (e.g. game, app)
app.categorystringApp category (e.g. action, utility)