Comprehensive documentation for all Ludustack API endpoints.
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.
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.
The Ludustack API requires authentication using API keys for all endpoints. You can generate an API key in your dashboard.
Include your API key in the request headers using one of these methods:
Authorization: Bearer YOUR_API_KEY
X-API-Key: YOUR_API_KEY
API keys have different scopes that determine what operations they can perform:
Scope | Access |
---|---|
READ | Can only read data using GET requests |
WRITE | Can read and modify data with GET, POST, PUT, and DELETE requests |
ADMIN | Full access to all API operations |
If you receive a 401 Unauthorized error, check that:
// 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...
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.
Code | Description |
---|---|
200 - OK | The request was successful. |
201 - Created | The resource was successfully created. |
400 - Bad Request | The request was invalid or cannot be otherwise served. |
401 - Unauthorized | Authentication credentials were missing or incorrect. |
403 - Forbidden | The request is understood, but it has been refused or access is not allowed. |
404 - Not Found | The requested resource could not be found. |
429 - Too Many Requests | The request was rate limited. Try again later. |
500 - Server Error | Something went wrong on our end. Please try again later. |
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.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