A lightweight, Discord-powered hierarchical API system.
Access structured data using simple HTTP requests.
To request API access or developer usage, send an email to:
contact@developer.decovius.org
You may receive a response from:
info@email.decovius.org
⚠️ Do NOT send requests to info@email.decovius.org directly — they will not be processed.
The API uses a 3-layer system:
Group → Sub → ID → Data
Data is stored inside Discord channels:
https://api.decovius.org
GET /?group=GROUP&sub=SUB&id=ID
GET /?group=GROUP&sub=SUB&id=ID&password=PASSWORD
https://api.decovius.org?group=users&sub=profile&id=user1
{
"success": true,
"group": "users",
"sub": "profile",
"id": "user1",
"data": "Example Data"
}
Passwords can be applied to:
If a password is set, the request must include:
&password=YOUR_PASSWORD
{"group":"users","channel":"123456789"}
{"sub":"profile","channel":"987654321"}
{"id":"user1","data":"John Doe"}
{
"success": false,
"error": {
"code": "ERROR",
"message": "Missing parameter"
}
}
{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Data not found"
}
}
{
"success": false,
"error": {
"code": "PASSWORD_REQUIRED",
"message": "Password required"
}
}
The API uses caching to improve performance.
Changes in Discord may take a short time to update depending on cache duration.
For questions or access requests:
contact@developer.decovius.org