> ## 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

> Get a row. Context.dev Contextdev Get Webdb Row reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Get a row.

<Info>
  Tool ID: `contextdev_get_webdb_row`
</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',
  {
    "row_id": "row_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute contextdev_get_webdb_row --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 --json` for the complete live contract.

## Input reference

Returns one row and links to its latest saved page.

| Name             | Type     | Required | Default | Details                                                                                                                                                                                                                                   |
| ---------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.row_id` | `string` | Yes      | —       | Row ID.                                                                                                                                                                                                                                   |
| `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": "Returns one row and links to its latest saved page.",
    "properties": {
      "row_id": {
        "type": "string",
        "description": "Row ID."
      },
      "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`                             | `object`                                                                     | Yes      | —       | —                                                                          |
| `result.data._id`                         | `string`                                                                     | Yes      | —       | —                                                                          |
| `result.data._url`                        | `string`                                                                     | Yes      | —       | —                                                                          |
| `result.data._status`                     | `"pending" \| "active" \| "stale" \| "removed" \| "error" \| "cap_consumed"` | Yes      | —       | Allowed: `pending`, `active`, `stale`, `removed`, `error`, `cap_consumed`. |
| `result.data._collection`                 | `string`                                                                     | Yes      | —       | —                                                                          |
| `result.data._meta`                       | `object`                                                                     | Yes      | —       | —                                                                          |
| `result.data._meta.first_seen_at`         | `string`                                                                     | Yes      | —       | Format: `date-time`.                                                       |
| `result.data._meta.last_checked_at`       | `string`                                                                     | Yes      | —       | Format: `date-time`.                                                       |
| `result.data._meta.last_changed_at`       | `string \| null`                                                             | Yes      | —       | Format: `date-time`.                                                       |
| `result.data._meta.change_count`          | `integer`                                                                    | Yes      | —       | —                                                                          |
| `result.data._meta.version`               | `integer`                                                                    | Yes      | —       | —                                                                          |
| `result.data._meta.eligibility_score`     | `number \| null`                                                             | Yes      | —       | —                                                                          |
| `result.data._meta.extraction_confidence` | `number \| null`                                                             | Yes      | —       | —                                                                          |
| `result.data._meta.content_hash`          | `string \| null`                                                             | Yes      | —       | —                                                                          |
| `result.data._meta.capped_at`             | `string \| null`                                                             | Yes      | —       | Format: `date-time`.                                                       |
| `result.data._meta.snapshot`              | `object \| null`                                                             | Yes      | —       | —                                                                          |
| `result.data._meta.snapshot.html_url`     | `string`                                                                     | No       | —       | —                                                                          |
| `result.data._meta.snapshot.markdown_url` | `string`                                                                     | No       | —       | —                                                                          |
| `result.data._meta.snapshot.captured_at`  | `string`                                                                     | Yes      | —       | Format: `date-time`.                                                       |
| `result.data._meta.params`                | `object \| null`                                                             | Yes      | —       | —                                                                          |
| `result.data._meta.params.path`           | `object \| null`                                                             | Yes      | —       | —                                                                          |
| `result.data._meta.params.search`         | `object \| null`                                                             | Yes      | —       | —                                                                          |
| `result.data._meta.source`                | `object`                                                                     | Yes      | —       | —                                                                          |
| `result.data._meta.source.target_id`      | `string`                                                                     | Yes      | —       | —                                                                          |
| `result.data._meta.source.entry_urls`     | `array`                                                                      | Yes      | —       | —                                                                          |
| `result.data._meta.fields`                | `record`                                                                     | Yes      | —       | —                                                                          |
| `result.data.key_metadata`                | `object`                                                                     | No       | —       | —                                                                          |
| `result.meta`                             | `object`                                                                     | No       | —       | —                                                                          |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {
        "type": "object",
        "properties": {
          "_id": {
            "type": "string"
          },
          "_url": {
            "type": "string"
          },
          "_status": {
            "type": "string",
            "enum": [
              "pending",
              "active",
              "stale",
              "removed",
              "error",
              "cap_consumed"
            ]
          },
          "_collection": {
            "type": "string"
          },
          "_meta": {
            "type": "object",
            "properties": {
              "first_seen_at": {
                "type": "string",
                "format": "date-time"
              },
              "last_checked_at": {
                "type": "string",
                "format": "date-time"
              },
              "last_changed_at": {
                "type": [
                  "string",
                  "null"
                ],
                "format": "date-time"
              },
              "change_count": {
                "type": "integer"
              },
              "version": {
                "type": "integer"
              },
              "eligibility_score": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "extraction_confidence": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "content_hash": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "capped_at": {
                "type": [
                  "string",
                  "null"
                ],
                "format": "date-time"
              },
              "snapshot": {
                "type": [
                  "object",
                  "null"
                ],
                "properties": {
                  "html_url": {
                    "type": "string"
                  },
                  "markdown_url": {
                    "type": "string"
                  },
                  "captured_at": {
                    "type": "string",
                    "format": "date-time"
                  }
                },
                "required": [
                  "captured_at"
                ],
                "additionalProperties": false
              },
              "params": {
                "type": [
                  "object",
                  "null"
                ],
                "properties": {
                  "path": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "additionalProperties": {
                      "type": "string"
                    }
                  },
                  "search": {
                    "type": [
                      "object",
                      "null"
                    ],
                    "additionalProperties": {
                      "type": "string"
                    }
                  }
                },
                "required": [
                  "path",
                  "search"
                ],
                "additionalProperties": false
              },
              "source": {
                "type": "object",
                "properties": {
                  "target_id": {
                    "type": "string"
                  },
                  "entry_urls": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  }
                },
                "required": [
                  "target_id",
                  "entry_urls"
                ],
                "additionalProperties": false
              },
              "fields": {
                "type": "object",
                "additionalProperties": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string",
                      "enum": [
                        "extracted",
                        "missing",
                        "invalid",
                        "low_confidence"
                      ]
                    },
                    "confidence": {
                      "type": [
                        "number",
                        "null"
                      ]
                    },
                    "changed_at": {
                      "type": "string",
                      "format": "date-time"
                    }
                  },
                  "required": [
                    "status",
                    "confidence"
                  ],
                  "additionalProperties": false
                }
              }
            },
            "required": [
              "first_seen_at",
              "last_checked_at",
              "last_changed_at",
              "change_count",
              "version",
              "eligibility_score",
              "extraction_confidence",
              "content_hash",
              "capped_at",
              "snapshot",
              "params",
              "source",
              "fields"
            ],
            "additionalProperties": false
          },
          "key_metadata": {
            "type": "object",
            "properties": {},
            "required": [],
            "additionalProperties": false
          }
        },
        "required": [
          "_id",
          "_url",
          "_status",
          "_collection",
          "_meta"
        ],
        "additionalProperties": true
      },
      "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)
