Request
Parameters
string
required
The workspace ID
integer
Number of months to retrieve (default: 12)
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve credit usage history over time
curl -X GET "https://api.series.hr/activity-credits/history/workspace_12345?months=3" \
-H "apikey: YOUR_API_KEY"
{
"success": true,
"data": {
"workspaceId": "workspace_12345",
"history": [
{
"month": "2024-01",
"totalCredits": 10000,
"usedCredits": 3500,
"remainingCredits": 6500
},
{
"month": "2023-12",
"totalCredits": 10000,
"usedCredits": 8200,
"remainingCredits": 1800
}
]
}
}
