---
title: "Get a row's change history"
method: GET
path: "/webdbs/rows/{row_id}/history"
tags: ["webdbs"]
---

# Get a row's change history

`GET /webdbs/rows/{row_id}/history`

Returns changes for one row, newest first.

## Path parameters

- `row_id` string, required — Row ID.

## Query parameters

- `limit` integer — Maximum items to return. Defaults to 25.
- `cursor` string — Pagination cursor from a previous response.
- `tags` string[] — Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters.

## Response `200`

Row change history

- WebdbsRowHistory — Change history for one row.
  - `row_id` string, required — Row ID.
  - `changes` object[], required — Recorded changes, newest first.
    - `at` string, date-time, required — Time the change happened.
    - `version` integer, required — Row version produced by this change.
    - `event` 'row.created' | 'row.updated' | 'row.removed' | 'row.error' | 'row.cap_consumed', required — Type of row change.
    - `fields` object, nullable, required — Changed values by field, or null when no values changed.
  - `has_more` boolean, required — Whether another page is available.
  - `next_cursor` string, nullable, required — Cursor for the next page, or null at the end.
  - `key_metadata` object — API key usage for this request.
    - `credits_consumed` integer, required — The number of credits consumed by this request.
    - `credits_remaining` integer, required — The number of credits remaining for your organization after this request.

## Other responses

- `401` — Unauthorized
- `404` — Not found

---

[API](https://skmtc.net/context/apis/context-dev.md) · [All operations](https://skmtc.net/context/apis/context-dev/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/context/context-dev/versions/3c6a01ba967f/schema)
