---
title: "Account vault activity discovery"
method: GET
path: "/v3/accounts/{address}/activity"
tags: ["Accounts"]
---

# Account vault activity discovery

`GET /v3/accounts/{address}/activity`

Discovers vault tuples an account interacts with (shares and/or controller-enabled debt),
including sub-accounts when available.
Uses `meta.hasMore` for pagination continuation on the hot path rather than an exact `meta.total`.

## Path parameters

- `address` string, required

## Query parameters

- `chainId` string
- `offset` integer
- `limit` integer

## Response `200`

Account activity

- object
  - `data` AccountActivity[]
    - `type` string
    - `chainId` integer
    - `vault` string
    - `assets` string — Raw underlying asset amount as a bigint string.
    - `shares` string — Raw vault share amount as a bigint string.
    - `txHash` string
    - `blockNumber` string
    - `timestamp` string, date-time
  - `meta` PaginationMeta
    - `total` integer — Exact total count when the endpoint provides one.
    - `hasMore` boolean — Indicates whether another page exists beyond the current page.
    - `offset` integer
    - `limit` integer — Echoed page size after endpoint-side clamping.
    - `timestamp` string, date-time, required
    - `chainId` string — Comma-separated chain IDs for multi-chain responses.
    - `degradedProviders` string[] — Live providers whose data is incomplete in this response.

## Other responses

- `504` — Upstream request timed out

---

[API](https://skmtc.dev/euler/apis/euler-data-api-v3.md) · [All operations](https://skmtc.dev/euler/apis/euler-data-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/euler/euler-data-api-v3/revisions/9e69e7cdb054/schema)
