> ## 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 Routine Run Batch Results

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

Fetch progress and results for a batch run.

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

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

### CLI

```bash theme={null}
deepline tools execute clay_get_routine_run_batch_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": {
    "error": {
      "message": "Example message"
    },
    "routine_run_id": "routine_run_123",
    "status": "processing_failed"
  }
}
```

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

## Input reference

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

| Name                     | Type     | Required | Default | Details                                |
| ------------------------ | -------- | -------- | ------- | -------------------------------------- |
| `payload.routine_run_id` | `string` | Yes      | —       | Minimum length: 1. Maximum length: 64. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns current status and results for an asynchronous batch routine run.",
    "properties": {
      "routine_run_id": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64
      }
    },
    "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.error`                       | `object`              | Yes      | —       | —                                              |
| `result.data.error.details`               | `array`               | Yes      | —       | —                                              |
| `result.data.error.details[].field`       | `string`              | Yes      | —       | —                                              |
| `result.data.error.details[].line_number` | `number`              | Yes      | —       | —                                              |
| `result.data.error.details[].message`     | `string`              | Yes      | —       | —                                              |
| `result.data.error.message`               | `string`              | Yes      | —       | —                                              |
| `result.data.error.total_invalid_rows`    | `number`              | Yes      | —       | —                                              |
| `result.data.routine_run_id`              | `string`              | Yes      | —       | —                                              |
| `result.data.status`                      | `"validation_failed"` | Yes      | —       | —                                              |
| `result.data.finished`                    | `number`              | Yes      | —       | —                                              |
| `result.data.result_url`                  | `string`              | 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": {
              "error": {
                "type": "object",
                "properties": {
                  "details": {
                    "type": "array",
                    "maxItems": 100,
                    "items": {
                      "type": "object",
                      "properties": {
                        "field": {
                          "type": "string"
                        },
                        "line_number": {
                          "type": "number"
                        },
                        "message": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "line_number",
                        "field",
                        "message"
                      ],
                      "additionalProperties": false
                    }
                  },
                  "message": {
                    "type": "string"
                  },
                  "total_invalid_rows": {
                    "type": "number"
                  }
                },
                "required": [
                  "message",
                  "total_invalid_rows",
                  "details"
                ],
                "additionalProperties": false
              },
              "routine_run_id": {
                "type": "string"
              },
              "status": {
                "type": "string",
                "const": "validation_failed"
              }
            },
            "required": [
              "routine_run_id",
              "status",
              "error"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "error": {
                "type": "object",
                "properties": {
                  "message": {
                    "type": "string"
                  }
                },
                "required": [
                  "message"
                ],
                "additionalProperties": false
              },
              "routine_run_id": {
                "type": "string"
              },
              "status": {
                "type": "string",
                "const": "processing_failed"
              }
            },
            "required": [
              "routine_run_id",
              "status",
              "error"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "finished": {
                "type": "number"
              },
              "result_url": {
                "type": "string",
                "format": "uri"
              },
              "routine_run_id": {
                "type": "string"
              },
              "status": {
                "type": "string",
                "const": "complete"
              },
              "total": {
                "type": "number"
              }
            },
            "required": [
              "routine_run_id",
              "total",
              "finished",
              "status",
              "result_url"
            ],
            "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)
