> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Context.dev: Contextdev Get Webdb Row Snapshot

> Download a row's page snapshot. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Download a row's page snapshot.

<Info>
  Tool ID: `contextdev_get_webdb_row_snapshot`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'contextdev_get_webdb_row_snapshot',
  {
    "row_id": "row_123"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute contextdev_get_webdb_row_snapshot --input '{
  "row_id": "row_123"
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get contextdev_get_webdb_row_snapshot --json` for the complete live contract.

## Input reference

Redirects to the latest saved page in HTML or Markdown.

| Name             | Type                   | Required | Default      | Details                                                                                                                                                                                                                                   |
| ---------------- | ---------------------- | -------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.row_id` | `string`               | Yes      | —            | Row ID.                                                                                                                                                                                                                                   |
| `payload.format` | `"markdown" \| "html"` | No       | `"markdown"` | Snapshot format to download. Allowed: `markdown`, `html`.                                                                                                                                                                                 |
| `payload.tags`   | `array`                | No       | —            | Optional comma-separated caller-defined tags for tracking this request. Tags are recorded on the request's usage log and can be used to filter usage on the dashboard usage page. Up to 20 tags, each 1-50 characters. Maximum items: 20. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Redirects to the latest saved page in HTML or Markdown.",
    "properties": {
      "row_id": {
        "type": "string",
        "description": "Row ID."
      },
      "format": {
        "type": "string",
        "description": "Snapshot format to download.",
        "default": "markdown",
        "enum": [
          "markdown",
          "html"
        ]
      },
      "tags": {
        "type": "array",
        "description": "Optional comma-separated caller-defined tags for tracking this request. Tags are recorded on the request's usage log and can be used to filter usage on the dashboard usage page. Up to 20 tags, each 1-50 characters.",
        "maxItems": 20,
        "items": {
          "type": "string",
          "minLength": 1,
          "maxLength": 50
        }
      }
    },
    "required": [
      "row_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name          | Type      | Required | Default | Details |
| ------------- | --------- | -------- | ------- | ------- |
| `result.data` | `unknown` | Yes      | —       | —       |
| `result.meta` | `object`  | No       | —       | —       |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {},
      "meta": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Context.dev provider guide](/docs/providers/contextdev/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
