Skip to main content
GET
/
transactions
List Transactions
curl --request GET \
  --url https://app.conduit.io/api/transactions \
  --cookie session=
{
  "transactions": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "accountId": "<string>",
      "type": "deposit",
      "amount": "1000.50",
      "token": "usdc",
      "chainId": 1,
      "status": "pending_approval",
      "createdById": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "workflowId": "<string>",
      "triggerId": "<string>",
      "txHash": "<string>",
      "blockNumber": 123,
      "gasUsed": "<string>",
      "errorMessage": "<string>",
      "approvedById": "<string>",
      "approvedAt": "2023-11-07T05:31:56Z",
      "executedAt": "2023-11-07T05:31:56Z",
      "confirmedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

session
string
cookie
required

Session-based authentication via cookies

Query Parameters

accountId
string

Filter by account ID

Response

List of transactions

transactions
object[]