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

# AnthropicCitationWebSearchResultLocation - TypeScript SDK

> AnthropicCitationWebSearchResultLocation type definition

<Warning>
  The TypeScript SDK and docs are currently in beta.
  Report issues on [GitHub](https://github.com/OpenRouterTeam/typescript-sdk/issues).
</Warning>

## Example Usage

```typescript lines theme={null}
import { AnthropicCitationWebSearchResultLocation } from "@openrouter/sdk/models";

let value: AnthropicCitationWebSearchResultLocation = {
  citedText: "Example cited text",
  encryptedIndex: "enc_idx_0",
  title: "Example Page",
  type: "web_search_result_location",
  url: "https://example.com",
};
```

## Fields

| Field            | Type                              | Required             | Description |
| ---------------- | --------------------------------- | -------------------- | ----------- |
| `citedText`      | *string*                          | :heavy\_check\_mark: | N/A         |
| `encryptedIndex` | *string*                          | :heavy\_check\_mark: | N/A         |
| `title`          | *string*                          | :heavy\_check\_mark: | N/A         |
| `type`           | *"web\_search\_result\_location"* | :heavy\_check\_mark: | N/A         |
| `url`            | *string*                          | :heavy\_check\_mark: | N/A         |
