OpenMeter Customers
List credit transactions
List credit transactions for a customer.
Returns an immutable, chronological record of credit movements: funded credits and consumed credits. Transactions are returned in reverse chronological order by default.
get/openmeter/customers/{customerId}/credits/transactions
Path parameters
customerIdstring required
ULID (Universally Unique Lexicographically Sortable Identifier).
Example:01G65Z755AFWAKHE12NY0CQ9FH
Query parameters
Filter credit transactions returned in the response.
{
"currency": "USD"
}Response
Cursor paginated response.
Example response
{
"data": [
{
"id": "01G65Z755AFWAKHE12NY0CQ9FH",
"labels": {
"env": "test"
},
"created_at": "2023-01-01T01:01:01.001Z",
"booked_at": "2023-01-01T01:01:01.001Z",
"currency": "USD"
}
],
"meta": {
"page": {
"size": 10
}
}
}