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": "2.39",
"asset": {
"code": "USD"
}
},
"moonpay": {
"amount": "4.99",
"asset": {
"code": "USD"
}
},
"ecosystem": {
"amount": "1.00",
"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": "2.39",
"asset": {
"code": "USD"
}
},
"moonpay": {
"amount": "4.99",
"asset": {
"code": "USD"
}
},
"ecosystem": {
"amount": "1.00",
"asset": {
"code": "USD"
}
}
},
"wallet": {
"address": "0x1234567890123456789012345678901234567890"
},
"customer": {
"id": "<string>"
},
"paymentMethod": {
"type": "apple_pay"
}
}
],
"pageInfo": {
"nextCursor": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://dev.moonpay.com/llms.txt
Use this file to discover all available pages before exploring further.
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