Skip to main content

Base URL

All API requests are made to the following base URL:
https://api.craftingstudiopro.de/v1

Response Format

Our API follows modern REST principles and delivers consistent JSON data.

Success Response

{
  "success": true,
  "data": {
    "id": 1,
    "title": "My Plugin",
    "version": "1.0.0"
  }
}

Error Response

{
  "success": false,
  "message": "Plugin not found or invalid ID."
}

Pagination

Endpoints that return lists (such as /plugins) use limit and offset for pagination.
ParameterDefaultMaxDescription
limit100500Maximum number of results to return.
offset0-Number of results to skip at the beginning.

Example Request

curl -X GET "https://api.craftingstudiopro.de/v1/plugins?limit=25&offset=50"