> ## 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 Post Utility Prefetch

> Prefetch data. Context.dev Contextdev Post Utility Prefetch reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Prefetch data.

<Info>
  Tool ID: `contextdev_post_utility_prefetch`
</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_post_utility_prefetch',
  {
    "type": "brand",
    "identifier": {
      "domain": "example.com"
    }
  },
);

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

### CLI

```bash theme={null}
deepline tools execute contextdev_post_utility_prefetch --input '{
  "type": "brand",
  "identifier": {
    "domain": "example.com"
  }
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "status": "example",
    "message": "Example message",
    "type": "brand"
  }
}
```

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

## Input reference

Signal that you may fetch data soon to improve latency. The type field selects what to prefetch ('brand' queues a brand data fetch, 'styleguide' queues a styleguide extraction) and identifier carries exactly one lookup key: a domain, or an email whose domain is extracted and validated (free email providers and disposable email addresses are not allowed).

| Name                 | Type                      | Required | Default | Details                                                                                                                                                                                                                  |
| -------------------- | ------------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `payload.type`       | `"brand" \| "styleguide"` | Yes      | —       | What to prefetch: 'brand' warms the brand data cache, 'styleguide' warms the styleguide cache. Allowed: `brand`, `styleguide`.                                                                                           |
| `payload.identifier` | `object`                  | Yes      | —       | Identifier of the target to prefetch. Provide exactly one of domain or email.                                                                                                                                            |
| `payload.timeoutMS`  | `integer`                 | No       | —       | Optional timeout in milliseconds for the request. If the request takes longer than this value, it will be aborted with a 408 status code. Maximum allowed value is 300000ms (5 minutes). Minimum: 1000. Maximum: 300000. |
| `payload.tags`       | `array`                   | No       | —       | Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters. Maximum items: 20.                                                                                                                             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Signal that you may fetch data soon to improve latency. The type field selects what to prefetch ('brand' queues a brand data fetch, 'styleguide' queues a styleguide extraction) and identifier carries exactly one lookup key: a domain, or an email whose domain is extracted and validated (free email providers and disposable email addresses are not allowed).",
    "properties": {
      "type": {
        "type": "string",
        "description": "What to prefetch: 'brand' warms the brand data cache, 'styleguide' warms the styleguide cache.",
        "enum": [
          "brand",
          "styleguide"
        ]
      },
      "identifier": {
        "description": "Identifier of the target to prefetch. Provide exactly one of domain or email.",
        "anyOf": [
          {
            "type": "object",
            "description": "Prefetch by domain.",
            "properties": {
              "domain": {
                "type": "string",
                "description": "Domain name to prefetch data for",
                "minLength": 3
              }
            },
            "required": [
              "domain"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "description": "Prefetch by email. The domain will be extracted and validated.",
            "properties": {
              "email": {
                "type": "string",
                "description": "Email address to prefetch data for. The domain will be extracted from the email. Free email providers (gmail.com, yahoo.com, etc.) and disposable email addresses are not allowed.",
                "minLength": 1,
                "format": "email"
              }
            },
            "required": [
              "email"
            ],
            "additionalProperties": false
          }
        ]
      },
      "timeoutMS": {
        "type": "integer",
        "description": "Optional timeout in milliseconds for the request. If the request takes longer than this value, it will be aborted with a 408 status code. Maximum allowed value is 300000ms (5 minutes).",
        "minimum": 1000,
        "maximum": 300000
      },
      "tags": {
        "type": "array",
        "description": "Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters.",
        "maxItems": 20,
        "items": {
          "type": "string",
          "minLength": 1,
          "maxLength": 50
        }
      }
    },
    "required": [
      "type",
      "identifier"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                       | Type                      | Required | Default | Details                         |
| -------------------------- | ------------------------- | -------- | ------- | ------------------------------- |
| `result.data`              | `object`                  | Yes      | —       | —                               |
| `result.data.status`       | `string`                  | No       | —       | —                               |
| `result.data.message`      | `string`                  | No       | —       | —                               |
| `result.data.type`         | `"brand" \| "styleguide"` | No       | —       | Allowed: `brand`, `styleguide`. |
| `result.data.domain`       | `string`                  | No       | —       | —                               |
| `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": {
          "status": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "type": {
            "type": "string",
            "enum": [
              "brand",
              "styleguide"
            ]
          },
          "domain": {
            "type": "string"
          },
          "key_metadata": {
            "type": "object",
            "properties": {},
            "required": [],
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "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)
