Transactions
List Transactions
GET
/
v1
/
transactions
/
search
Copy
curl --request GET \
--url https://api.creem.io/v1/transactions/search \
--header 'x-api-key: <x-api-key>'
Copy
{
"items": [
{
"id": "<string>",
"mode": "test",
"object": "transaction",
"amount": 2000,
"amount_paid": 2000,
"discount_amount": 2000,
"currency": "EUR",
"type": "<string>",
"tax_country": "US",
"tax_amount": 2000,
"status": "<string>",
"refunded_amount": 2000,
"order": "<string>",
"subscription": "<string>",
"customer": "<string>",
"description": "<string>",
"period_start": 123,
"period_end": 123,
"created_at": 123
}
],
"pagination": {
"total_records": 0,
"total_pages": 0,
"current_page": 1,
"next_page": 2,
"prev_page": null
}
}
Headers
Query Parameters
The customer id
The order id
The product id
The page number
The the page size
Response
200 - application/json
Successfully retrieved transactions
The response is of type object
.
Copy
curl --request GET \
--url https://api.creem.io/v1/transactions/search \
--header 'x-api-key: <x-api-key>'
Copy
{
"items": [
{
"id": "<string>",
"mode": "test",
"object": "transaction",
"amount": 2000,
"amount_paid": 2000,
"discount_amount": 2000,
"currency": "EUR",
"type": "<string>",
"tax_country": "US",
"tax_amount": 2000,
"status": "<string>",
"refunded_amount": 2000,
"order": "<string>",
"subscription": "<string>",
"customer": "<string>",
"description": "<string>",
"period_start": 123,
"period_end": 123,
"created_at": 123
}
],
"pagination": {
"total_records": 0,
"total_pages": 0,
"current_page": 1,
"next_page": 2,
"prev_page": null
}
}
Assistant
Responses are generated using AI and may contain mistakes.