API Reference

Complete REST API documentation and reference

Integrate Game Launcher Cloud into your workflows with our RESTful API.


Overview

The Game Launcher Cloud API provides programmatic access to all platform features.

Base URL:

https://api.gamelauncher.cloud/api

Authentication

API Keys

Generate an API key from your dashboard:

DashboardUserAPI KeysCreate API Key

Create API Key in your account

Authorization: Bearer YOUR_API_KEY

Example Request:

curl -X GET "https://api.gamelauncher.cloud/api/apps" \
  -H "Authorization: Bearer glc_1234567890abcdef" \
  -H "Content-Type: application/json"

Response Format

Standard Response

All API responses follow this format:

{
  "statusCode": 100,
  "isSuccess": true,
  "errorMessages": [
    "string"
  ],
  "result": "string"
}

Error Response

Last updated

Was this helpful?