List credit logs
Credits
List credit logs
Read your Markifact team’s credit ledger: every charge, what caused it, and who ran it.
GET
List credit logs
Returns one entry per credit charge, newest first. Every workflow run, agent turn, copilot request, and MCP tool call that consumed credits appears here.
Unlike operation logs, the credit ledger is not truncated by your plan. Your full history is available so you can reconcile against invoices.
Page through with
Endpoint
Query Parameters
Example Request
Response
Credit Log Object
Service Object
Pagination
Identical to operation logs: readnext_cursor and pass it back as cursor. Keep every other parameter unchanged while paging, and treat the cursor as opaque.
Cost Allocation Example
To total what one workflow cost over a period, filter by itsservice_id and sum:
next_cursor until has_more is false to cover the whole range. Use limit=1000 when exporting: a full page is only around 265 KB, so a year of history is a handful of requests rather than hundreds.
Credit charges do not map one-to-one onto operation logs. A single workflow run produces one operation log per node but a single credit entry, and agent and copilot usage is charged at the conversation level. Treat this ledger as the authoritative record of what you were charged.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter by what was charged.
Available options:
workflow, agent, copilot, mcp Charges from one workflow, conversation, or MCP server.
Charges triggered by one team member.
Only charges at or after this Unix second.
Required range:
x >= 0Only charges at or before this Unix second.
Required range:
x >= 0Entries per page. The ceiling is higher than on other resources because ledger entries carry no payloads.
Required range:
1 <= x <= 1000The next_cursor from the previous page. Keep every other filter unchanged while paging.

