Skip to main content
GET
/
api
/
external
/
change-log
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
}

Authentication

X-API-Key
string
required
Your WURK API key

Query Parameters

page
integer
default:"1"
Page number for pagination

Response

entries
array
Array of change log entries
page
integer
Current page number
totalPages
integer
Total number of pages
pageSize
integer
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
}