---
title: "Get Equity"
method: GET
path: "/v1/account/equity"
---

# Get Equity

`GET /v1/account/equity`

Get equity history for the authenticated account.
If no end time is provided, the current time will be used.
Each point is the last equity sample in its `interval` bucket, stamped with
that sample's own timestamp rather than the bucket's start — so every
timestamp falls within the requested window. Buckets are aligned to the
Unix epoch.
Equity history is served at one-minute resolution, so `1s` is served as
`1m`.
Maximum of 1000 entries returned per request — of buckets, so a coarser
interval covers a longer window before `more` is set. When `more` is true,
page by re-requesting from one millisecond past the last timestamp
returned; that always lands on the next bucket, never back inside the one
just served.

## Query parameters

- `interval` '1s' | '1m' | '5m' | '15m' | '30m' | '1h' | '4h' | '6h' | '12h' | '1d' | '1w', required — Kline interval
- `start_timestamp` integer, required — Start timestamp in milliseconds
- `end_timestamp` integer — End timestamp in milliseconds

## Response `200`

Equity history response.

- EquityHistory
  - `data` array[], required — - `1767225600000` - Timestamp - `"10000.00"` - Equity
    - unknown[]
      - unknown
  - `more` boolean, required — More data available

## Other responses

- `400` — Bad request — the request was malformed or failed validation (bad query parameters, unparseable body, invalid signature, or a domain pre-check). The `error` field is a human-readable validation detail.
- `401` — Unauthorized — missing or invalid `POLYMARKET-PROXY` / `POLYMARKET-SECRET` credentials. `error` is `unauthorized`.
- `429` — Too Many Requests. `error` distinguishes the limit that was hit: `ip_rate_limited` (per-IP token bucket), `action_rate_limited` (per-account action rate), or `open_orders_limit` (resting open-order cap).
- `500` — Internal server error. `error` is `internal_error`.

---

[API](https://skmtc.net/polymarket/apis/polymarket-perps-http-api.md) · [All operations](https://skmtc.net/polymarket/apis/polymarket-perps-http-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polymarket/polymarket-perps-http-api/revisions/76e4e47cf3aa/schema)
