ROZO Intents API
  1. Transactions
ROZO Intents API
  • Payments
    • Create Payment
      POST
    • Get Payment
      GET
  • Transactions
    • Get Transactions by Address
      GET
  • Schemas
    • PaymentRequest
    • CreatePaymentRequest
    • PaymentUpdateRequest
    • PaymentResponse
    • PaymentListResponse
    • DisplayInfo
    • TransactionsResponse
    • SourceRequest
    • SourceResponse
    • DestinationRequest
    • DestinationResponse
    • ErrorResponse
    • ChainId
    • TokenSymbol
    • PaymentStatus
    • PaymentErrorCode
    • FeeType
  1. Transactions

Get Transactions by Address

GET
/transactions
Retrieves the last transactions for a wallet address

Request

Query Params

Responses

🟢200
application/json
Transactions found
Body

🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://intentapiv4.rozo.ai/functions/v1/payment-api/transactions?address=GC56BXCNEWL6JSGKHD3RJ5HJRNKFEJQ53D3YY3SMD6XK7YPDI75BQ7FD&role&limit'
Response Response Example
200 - Example 1
{
    "data": [
        {
            "id": "550e8400-e29b-41d4-a716-446655440000",
            "appId": "string",
            "orderId": "string",
            "status": "payment_unpaid",
            "errorCode": "string",
            "errorMessage": "string",
            "type": "exactIn",
            "createdAt": "2019-08-24T14:15:22.123Z",
            "updatedAt": "2019-08-24T14:15:22.123Z",
            "expiresAt": "2019-08-24T14:15:22.123Z",
            "display": {
                "title": "string",
                "description": "string",
                "currency": "string"
            },
            "source": {
                "chainId": "string",
                "tokenSymbol": "string",
                "tokenAddress": "string",
                "amount": "string",
                "receiverAddress": "string",
                "receiverMemo": "string",
                "fee": "string",
                "senderAddress": "string",
                "txHash": "string",
                "amountReceived": "string",
                "confirmedAt": "2019-08-24T14:15:22.123Z"
            },
            "destination": {
                "chainId": "string",
                "receiverAddress": "string",
                "receiverMemo": "string",
                "tokenSymbol": "string",
                "tokenAddress": "string",
                "amount": "string",
                "txHash": "string",
                "confirmedAt": "2019-08-24T14:15:22.123Z"
            },
            "webhookSecret": "string",
            "metadata": {}
        }
    ],
    "count": 10
}
Modified at 2025-12-19 01:17:17
Previous
Get Payment
Next
PaymentRequest
Built with