🖇️Apply Your Test Key

What you need to make your game link into RPGGO's API...

  • RPGGO Public API is in currently under alpha phase and do not open to auto-public application.

  • If you want to try it, please submit an application form via here, or send an email to dev@rpggo.ai

Authentication

The RPGGO open API uses App IDs and API keys for authentication. As this is currently a beta version, please reach out to us to obtain the ID and key. We will subsequently provide a page to retrieve and manage the API key you'll use in your requests.

Get your API key

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

Please apply your key here:

Apply Your Test Key

Use API key to authenticate

For users who create multiple apps, you should pass a header to specify which App is used for an API request. Future usage from these API requests will count against the specified App's subscription quota.

Remember that your API key is a secret! Do not share it with others or expose it in any client-side code (browsers, apps). Production requests must be routed through your own backend server where your API key can be securely loaded from an environment variable or key management service.

All API requests should include your App ID and API key in HTTP header as follows:

Application-ID: YOUR_RPGGO_APP_ID
Authorization: Bearer YOUR_RPGGO_API_KEY

Example curl command:

curl https://api.rpggo.ai/open/game/gamelist \
  -H "Authorization: Bearer $YOUR_RPGGO_API_KEY" \
  -H "Application-ID: YOUR_RPGGO_APP_ID"

RPGGO server will verify permissions by the Application-IDAuthorization and several other parameters. If an incorrect key is used the API will return a 401 HTTP error.

Last updated