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

# Clay Enterprise: Clay Get Run Results

> Fetch progress and results for a routine run. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Fetch progress and results for a routine run.

<Info>
  Tool ID: `clay_get_run_results`
</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(
  'clay_get_run_results',
  {
    "routine_run_id": "routine_run_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute clay_get_run_results --input '{
  "routine_run_id": "routine_run_123"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "data": [
      {
        "id": "id_123",
        "status": "complete"
      }
    ],
    "finished": 123,
    "routine_run_id": "routine_run_123",
    "status": "complete",
    "total": 123
  }
}
```

Use `deepline tools get clay_get_run_results --json` for the latest machine-readable contract.

## Input reference

Returns current status and paginated results for an asynchronous routine run.

| Name                     | Type      | Required | Default | Details                                |
| ------------------------ | --------- | -------- | ------- | -------------------------------------- |
| `payload.routine_run_id` | `string`  | Yes      | —       | Minimum length: 1. Maximum length: 64. |
| `payload.cursor`         | `string`  | No       | —       | —                                      |
| `payload.limit`          | `integer` | No       | `20`    | Minimum: 1. Maximum: 100.              |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns current status and paginated results for an asynchronous routine run.",
    "properties": {
      "routine_run_id": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64
      },
      "cursor": {
        "type": "string"
      },
      "limit": {
        "type": "integer",
        "default": 20,
        "minimum": 1,
        "maximum": 100
      }
    },
    "required": [
      "routine_run_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                               | Type                     | Required | Default | Details                                        |
| ---------------------------------- | ------------------------ | -------- | ------- | ---------------------------------------------- |
| `result.data`                      | `object`                 | Yes      | —       | Provider response payload.                     |
| `result.data.cursor`               | `string`                 | No       | —       | —                                              |
| `result.data.data`                 | `array`                  | Yes      | —       | —                                              |
| `result.data.data[].error`         | `object`                 | No       | —       | —                                              |
| `result.data.data[].error.message` | `string`                 | Yes      | —       | —                                              |
| `result.data.data[].id`            | `string`                 | Yes      | —       | —                                              |
| `result.data.data[].result`        | `record`                 | No       | —       | —                                              |
| `result.data.data[].status`        | `"complete" \| "failed"` | Yes      | —       | —                                              |
| `result.data.finished`             | `number`                 | Yes      | —       | —                                              |
| `result.data.routine_run_id`       | `string`                 | Yes      | —       | —                                              |
| `result.data.status`               | `"complete"`             | Yes      | —       | —                                              |
| `result.data.total`                | `number`                 | Yes      | —       | —                                              |
| `result.meta`                      | `object`                 | No       | —       | Additional response metadata (status, paging). |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "description": "Provider response payload.",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "cursor": {
                "type": "string"
              },
              "data": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "message": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "message"
                      ],
                      "additionalProperties": false
                    },
                    "id": {
                      "type": "string"
                    },
                    "result": {
                      "type": "object",
                      "additionalProperties": {}
                    },
                    "status": {
                      "type": "string",
                      "enum": [
                        "complete",
                        "failed"
                      ]
                    }
                  },
                  "required": [
                    "id",
                    "status"
                  ],
                  "additionalProperties": false
                }
              },
              "finished": {
                "type": "number"
              },
              "routine_run_id": {
                "type": "string"
              },
              "status": {
                "type": "string",
                "const": "complete"
              },
              "total": {
                "type": "number"
              }
            },
            "required": [
              "routine_run_id",
              "total",
              "finished",
              "status",
              "data"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "finished": {
                "type": "number"
              },
              "routine_run_id": {
                "type": "string"
              },
              "status": {
                "type": "string",
                "const": "in_progress"
              },
              "total": {
                "type": "number"
              }
            },
            "required": [
              "routine_run_id",
              "total",
              "finished",
              "status"
            ],
            "additionalProperties": false
          }
        ]
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "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

* [Clay Enterprise provider guide](/docs/providers/clay/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)
