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

# Get a row

`GET /webdbs/rows/{row_id}`

Returns one row and links to its latest saved page.

## Path parameters

- `row_id` string, required — Row ID.

## Query parameters

- `tags` string[] — Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters.

## Response `200`

Row

- object — Extracted page data with system fields prefixed by an underscore.
  - `_id` string, required — Row ID.
  - `_url` string, required — Final URL used to create the row.
  - `_status` 'pending' | 'active' | 'stale' | 'removed' | 'error' | 'cap_consumed', required — Current row status.
  - `_collection` string, required — Collection ID.
  - `_meta` object, required — System details for this row.
    - `first_seen_at` string, date-time, required — Time this row was first found.
    - `last_checked_at` string, date-time, required — Time this row was last checked.
    - `last_changed_at` string, date-time, nullable, required — Time the row values last changed.
    - `change_count` integer, required — Number of times the row changed.
    - `version` integer, required — Current row version.
    - `eligibility_score` number, nullable, required — Latest page eligibility score.
    - `extraction_confidence` number, nullable, required — Latest extraction confidence score.
    - `content_hash` string, nullable, required — Hash of the latest page content.
    - `credits_used` integer, required — Credits used to produce this row.
    - `capped_at` string, date-time, nullable, required — Time a credit limit stopped updates for this row.
    - `snapshot` object, nullable, required — Latest saved page snapshot.
      - `html_url` string — Temporary URL for the saved HTML.
      - `markdown_url` string — Temporary URL for the saved Markdown.
      - `captured_at` string, date-time, required — Time the page snapshot was saved.
    - `params` object, nullable, required — Values captured from the matching URL pattern.
      - `path` object, nullable, required — Values captured from named URL path segments.
      - `search` object, nullable, required — Values captured from URL query parameters.
    - `source` object, required — Source information for this row.
      - `target_id` string, required — Target that found this page.
      - `entry_urls` string[], required — Starting URLs that led to this page.
    - `fields` object, required — Extraction details for each field.
  - `key_metadata` KeyMetadata — Metadata about the API key used for the request. Included in every response whenever a valid API key is provided, even when the response status is not 200.
    - `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/182f532c2552/schema)
