This documentation provides information on how to use the DZconfig API to interact with your instances and their associated resources. The API allows you to programmatically manage your DayZ server configurations.
All API requests require authentication using an API token. You can find your API token in your user profile. The token should be included in the Authorization header of your requests.
Authorization: Bearer YOUR_API_TOKEN
All API endpoints are relative to the base URL:
https://dzconfig.com/api
All responses are returned in JSON format. Successful responses will have a 2xx status code, while errors will have a 4xx or 5xx status code.
How to authenticate with the API
Manage your server instances
Manage item classnames
Manage item categories
Manage item subcategories
Manage server mods
Manage item types
Manage generated files
Manage uploaded files
Manage trader items
API requests are subject to rate limiting to ensure fair usage. The current rate limit is 60 requests per minute. If you exceed this limit, you will receive a 429 Too Many Requests response.
When an error occurs, the API will return a JSON response with an error message and appropriate HTTP status code. Example error response:
{
"error": "Unauthorized",
"message": "Invalid API token"
}
If you have any questions or issues with the API, please contact our support team. Each endpoint has its own detailed documentation page with examples and parameter descriptions.