Menu

Ludustack API Reference

Comprehensive documentation for all Ludustack API endpoints.

API Overview

The Ludustack API is organized around REST principles. It uses standard HTTP verbs, returns JSON-encoded responses, and uses standard HTTP response codes to indicate API errors.

All API requests must be authenticated using your API key. API keys are tied to your user account, not to specific projects. You can generate API keys in your account settings.

API Versioning

Ludustack supports multiple API versions. Current supported versions:

  • v1
  • v2 (default)

Default API base URL: https://ludustack.com/api

Versioned API base URL: https://ludustack.com/api/{version}

You can also specify a version using the X-API-Version header.

Authentication

The Ludustack API requires authentication using API keys for all endpoints. You can generate an API key in your dashboard.

API Key Authentication

Include your API key in the request headers using one of these methods:

Option 1: Authorization Header (Recommended)

Authorization: Bearer YOUR_API_KEY

Option 2: X-API-Key Header

X-API-Key: YOUR_API_KEY

API Key Scopes

API keys have different scopes that determine what operations they can perform:

ScopeAccess
READCan only read data using GET requests
WRITECan read and modify data with GET, POST, PUT, and DELETE requests
ADMINFull access to all API operations

Example API Request with Authentication

// Using fetch
fetch('https://ludustack.com/api/games', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  }
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));

// Using axios
import axios from 'axios';

axios.get('https://ludustack.com/api/games', {
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY'
  }
})
.then(response => console.log(response.data))
.catch(error => console.error(error));

Loading API endpoints...

Error Handling

The Ludustack API uses conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that failed given the information provided, and codes in the 5xx range indicate an error with Ludustack's servers.

CodeDescription
200 - OKThe request was successful.
201 - CreatedThe resource was successfully created.
400 - Bad RequestThe request was invalid or cannot be otherwise served.
401 - UnauthorizedAuthentication credentials were missing or incorrect.
403 - ForbiddenThe request is understood, but it has been refused or access is not allowed.
404 - Not FoundThe requested resource could not be found.
429 - Too Many RequestsThe request was rate limited. Try again later.
500 - Server ErrorSomething went wrong on our end. Please try again later.

Rate Limiting

The Ludustack API implements rate limiting to protect against abuse and ensure a reliable service for all users. Rate limits are applied on a per-API key basis.

If you exceed the rate limit, you will receive a 429 Too Many Requests response. The response will include headers that provide information about your rate limit status:

  • X-RateLimit-Limit: The maximum number of requests you're permitted to make per hour.
  • X-RateLimit-Remaining: The number of requests remaining in the current rate limit window.
  • X-RateLimit-Reset: The time at which the current rate limit window resets in UTC epoch seconds.

Need Help?

If you have any questions or need assistance with the Ludustack API, please don't hesitate to reach out to our support team.

Contact Support