Skip to main content

Query Parameters

  • accountId (optional): Filter transactions by account ID

Response

Returns an array of transactions for the organization.
{
  "transactions": [
    {
      "id": "string",
      "accountId": "string",
      "type": "transfer" | "sweep" | "strategy",
      "status": "pending" | "approved" | "executed" | "failed",
      "amount": "string",
      "token": "USDC" | "USDT",
      "to": "string",
      "createdAt": "timestamp",
      "createdBy": "string"
    }
  ]
}