Zynk
Getting StartedProduct GuidesAPI Reference
FAQ'sRecipes
Getting StartedProduct GuidesAPI Reference
FAQ'sRecipes
  1. Transporter - Automated Liquidity Manager
  • Transformer - Cross border transfer
    • Transformer: Entity
      • Create Entity
      • Entities
      • Entity By ID
      • Entity By Email
      • KYC Status
      • KYC Requirements
      • Submit KYC/KYB
      • Get KYC Documents
    • Transformer: Accounts
      • External Accounts
        • Generate Plaid Link Token
        • Update Plaid Link Token
        • Get External Account Payload Requirements
        • Add External Account
        • Enable External Account
        • Disable External Account
        • Delete External Account
        • Get External Account by ID
        • Get External Accounts
      • Funding Accounts
        • Create Funding Account
        • Activate Funding Account
        • Deactivate Funding Account
        • Funding Account by ID
        • All Funding Accounts
      • Entity Accounts (Deprecated)
        • Add Entity Account
        • Remove Entity Account
        • Get Entity Account
        • Get Entity Accounts
    • Transformer: Transfers
      • Simulate
      • Transfer
      • All Transfers
      • Transfers by entity
      • Transfer by execution ID
      • Transfer by partner transaction ID
      • All transfers for partner
    • Transformer: Utility
      • Partner Payments Account Balance
      • Partner Payments Deposit
      • Get Jurisdictions
    • Webhooks
      • Get Webhook Events History
      • Registered Webhook URL
      • Register or Update Webhook URL
  • Transporter - Automated Liquidity Manager
    • ALM Market
      • Create Reserve Quote
      • Accept Reserve Frame
      • Get Active Reserves
      • Get All Reserves
    • Transaction Details by ID, Partner Transaction ID, or Transaction Hash
      GET
    • Get All Transactions
      GET
    • Transaction Details
      GET
    • Transaction Details by ID
      GET
    • Partner Details
      GET
    • Initiate Transaction
      POST
    • Replenish Fee Quote
      POST
    • Quote Fulfilled
      POST
    • Replenish Initiate
      POST
    • Replenish Batch Transaction
      POST
    • Replenish Fee Quote Batch
      POST
  • Teleport - Pay-In Accounts
    • Create Teleport Route
      POST
    • Update Teleport Destination
      POST
    • Toggle Teleport Status
      POST
    • Teleport Details
      GET
    • Teleport Routes by Entity
      GET
  • Continuum - Wallet Infrastructure
    • Authentication
      • Register primary authentication
    • Wallet Management
      • Prepare wallet creation challenge (Step 1)
      • Submit wallet creation activity (Step 2)
    • Account Management
      • Prepare account creation challenge (Step 1)
      • Submit account creation activity (Step 2)
    • Passkey Management
      • Prepare passkey registration (Step 1)
      • Submit passkey registration (Step 2)
      • Get passkey authenticators
      • Prepare passkey deletion (Step 1)
      • Submit passkey deletion (Step 2)
    • Wallet Information
      • Get wallet details
      • Get wallet balances
      • Get transactions for address
    • Sessions
      • Initiate OTP delivery
      • Start authentication session
  • Archive
    • KYC Documents
    • Prepaid KYC Balance
    • Prepaid KYC Deposit
  1. Transporter - Automated Liquidity Manager

Get All Transactions

GET
/api/v1/transactions/list
Returns ALM transactions for the authenticated partner. Excludes transformer
transactions in all modes. The three filter modes are mutually exclusive:
Date range (fromDate + toDate): returns all transactions in the window,
sorted newest-first. Cannot be combined with replenishCapAmount or pagination params.
Cap amount (replenishCapAmount): returns transactions with pendingAmount > 0,
accumulating oldest-first until the cap is reached. Cannot be combined with date params
or pagination params.
Paginated (default): page/limit-based results sorted newest-first. Response
includes paginationData and isTransactionInProgress.
Each transaction is enriched with currencyName, explorer url, totalReplenishedAmount,
bankAccount, batchReplenishStatus, and batchQuoteId where applicable.

Request

Query Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/transactions/list?replenishStatus=OPEN&fromDate=2024-01-01T00%3A00%3A00.000Z&toDate=2024-01-31T23%3A59%3A59.999Z&replenishCapAmount=50000&page=1&limit=10'
Response Response Example
200 - Success
{
    "success": true,
    "message": "Transactions retrieved successfully.",
    "data": [
        {
            "id": "txn_1234567890abcdef",
            "partnerTransactionId": "partner-txn-001",
            "orderId": null,
            "zynkPartnerId": "zp_123456",
            "chainId": "101",
            "token": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
            "contract": null,
            "amount": 5000,
            "fromWallet": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
            "toWallet": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
            "txnHash": "5KtBh7dXnmhBR3Qgd3R9BfD1WxiyvJqLvNWCYkTJjHc",
            "orderTracker": null,
            "txnStatus": "CONFIRMED",
            "isFilled": true,
            "nonce": null,
            "remarks": null,
            "replenishWalletAddress": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
            "replenishStatus": "OPEN",
            "pendingAmount": 2500,
            "excessReplenishAmount": 0,
            "isTransformer": false,
            "isFlashRequest": false,
            "networkFee": 0.000005,
            "cryptoCurrencyId": "token_1234567890abcdef",
            "url": "https://solscan.io/tx/5KtBh7dXnmhBR3Qgd3R9BfD1WxiyvJqLvNWCYkTJjHc",
            "misc": null,
            "isCCTPTxn": false,
            "executionId": null,
            "executionSummary": null,
            "createdAt": "2024-01-15T10:30:00.000Z",
            "updatedAt": "2024-01-15T12:00:00.000Z",
            "currencyName": "USDC",
            "totalReplenishedAmount": 2500,
            "bankAccount": null,
            "batchReplenishStatus": "COMPLETED",
            "batchQuoteId": "rq_abcdef1234567890"
        }
    ],
    "isTransactionInProgress": false,
    "paginationData": {
        "currentPage": 1,
        "totalPages": 5,
        "totalRecordsCount": 47,
        "hasNextPage": true,
        "hasPrevPage": false
    }
}
Modified at 2026-05-08 07:26:17
Previous
Transaction Details by ID, Partner Transaction ID, or Transaction Hash
Next
Transaction Details
Built with