All requests must include the X-API-KEY header. You can find your personal key in your profile dropdown on the homepage.
Example Request
curl -H "X-API-KEY: your_key_here" http://46.247.109.229:6969/api.php?action=get_projects
Every user starts with 100 points per hour. Points reset automatically 1 hour after your first request of the hour.
Check X-Points-Remaining and Retry-After headers for status.
?action=get_projects
Returns an array of all projects you have permission to view.
Example Response
[
{
"id": "skript-economy",
"name": "Advanced Economy",
"categories": ["Economy", "Skript"],
"type": "skript"
}
]
?action=get_project&id={id}
Returns detailed metadata and statistics for a specific project.
Example Response
{
"id": "economy",
"name": "Simple Economy",
"total_downloads": 150,
"genuine_downloads": 124,
"latest_version": "1.3",
"rating": 4.5
}
?action=get_versions&id={id}
Returns all release history for the specified project.
?action=download&id={id}&version={v}
Returns a temporary download URL for the requested version.
Example Response
{
"download_url": "https://yoursite.com/download.php?id=economy&version=1.3&key=..."
}