Authentication
Query Parameters
Page number for pagination
Response
Array of change log entries
Number of items per page (50)
Rate Limit
5 requests per minute
Caching
Server caches each page for 1 hour
curl -X GET "https://wurkapi.fun/api/external/change-log?page=1" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Accept: application/json"
{
"entries": [
{
"date": "2024-01-15",
"version": "1.2.0",
"changes": [
"Added agent_help job mode",
"Improved rate limiting",
"Fixed submission pagination"
]
},
{
"date": "2024-01-10",
"version": "1.1.0",
"changes": [
"Added balance payment option",
"New categories system"
]
}
],
"page": 1,
"totalPages": 1,
"pageSize": 50
}