🚧 This integration is currently in preview and subject to change.
curl --request GET \
--url https://api.moonpay.com/platform/v1/transactions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"status": "completed",
"source": {
"amount": "<string>",
"asset": {
"code": "USD"
}
},
"destination": {
"amount": "<string>",
"asset": {
"code": "<string>"
}
},
"fees": {
"network": {
"amount": "<string>",
"asset": {
"code": "USD"
}
},
"moonpay": {
"amount": "<string>",
"asset": {
"code": "USD"
}
},
"partner": {
"amount": "<string>",
"asset": {
"code": "USD"
}
}
},
"wallet": {
"address": "0x1234567890123456789012345678901234567890"
},
"customer": {
"id": "<string>"
},
"paymentMethod": {
"type": "apple_pay"
}
}
],
"pageInfo": {
"nextCursor": "<string>"
}
}List transactions for the connected user with optional date filtering and pagination
curl --request GET \
--url https://api.moonpay.com/platform/v1/transactions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"status": "completed",
"source": {
"amount": "<string>",
"asset": {
"code": "USD"
}
},
"destination": {
"amount": "<string>",
"asset": {
"code": "<string>"
}
},
"fees": {
"network": {
"amount": "<string>",
"asset": {
"code": "USD"
}
},
"moonpay": {
"amount": "<string>",
"asset": {
"code": "USD"
}
},
"partner": {
"amount": "<string>",
"asset": {
"code": "USD"
}
}
},
"wallet": {
"address": "0x1234567890123456789012345678901234567890"
},
"customer": {
"id": "<string>"
},
"paymentMethod": {
"type": "apple_pay"
}
}
],
"pageInfo": {
"nextCursor": "<string>"
}
}Bearer authentication header using an access token.
Example: Authorization: Bearer <accessToken>
Cursor for pagination. Use the nextCursor value from the previous response.
Number of items to return per page.
1 <= x <= 50