Skip to main content
GET
/
allocations
List Allocations
curl --request GET \
  --url https://app.conduit.io/api/allocations \
  --cookie session=
{
  "allocations": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "accountId": "<string>",
      "strategyId": "<string>",
      "shares": "<string>",
      "depositedAmount": "<string>",
      "token": "usdc",
      "chainId": 1,
      "status": "active",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "transactionId": "<string>",
      "currentValue": "<string>",
      "depositTxHash": "<string>",
      "depositBlockNumber": 123,
      "withdrawTxHash": "<string>",
      "withdrawBlockNumber": 123,
      "depositedAt": "2023-11-07T05:31:56Z",
      "withdrawnAt": "2023-11-07T05:31:56Z",
      "valueUpdatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

session
string
cookie
required

Session-based authentication via cookies

Query Parameters

accountId
string

Filter by account ID

strategyId
string

Filter by strategy ID

status
enum<string>

Filter by allocation status

Available options:
active,
withdrawn,
failed

Response

List of allocations

allocations
object[]