List transactions
GET/v2/studio/transactions
Your credit history for a date range, newest first.
Request
Query Parameters
limit number
Page size, 1 to 100. Default 25.
skip number
How many to skip. Default 0.
endDate stringrequired
Inclusive range end (ISO 8601).
startDate stringrequired
Inclusive range start (ISO 8601).
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
items
object[]
id string
type string
Movement type (debit, refund, allocation, expiry).
category string
UI category (artwork, subscription, topup, refund...).
amount number
Credit amount.
reason string
Reason string.
artworkId string
Linked artwork id, when the movement is a generation.
createdAt date-time
totalCount number
Total matching transactions.
{
"items": [
{
"id": "string",
"type": "string",
"category": "string",
"amount": 0,
"reason": "string",
"artworkId": "string",
"createdAt": "2024-07-29T15:51:28.071Z"
}
],
"totalCount": 0
}
Loading...