# Crawled Version

> A snapshot of the submitted document. It shows how Copyleaks viewed your submitted file.

A snapshot of the submitted document. It shows how Copyleaks viewed your submitted file.

## Webhook HTTP verb

The HTTP verb for this webhook is upon developer request. You need to specify your verb while executing the [Export method](/reference/actions/downloads/export) See `crawledVersion.verb` field. 

<Tip>
  We recommend you use the HTTP verb `PUT`. It will allow Copyleaks to override an existing file as needed.
</Tip>

The crawled version is available in textual format, and if the `properties.includeHtml` field (in the `submit` method) is set to `true`, it is also in HTML format.

<CrawledVersion />

## Example

```json
{
  "metadata": {
    "words": 30,
    "excluded": 2
  },
  "html": {
    "value": "<html><body><h1>Example Domain</h1><p>This domain is established to be used for illustrative examples in documents.</body></html>",
    "exclude": {
      "starts": [
        16
      ],
      "lengths": [
        14
      ],
      "reasons": [
        3
      ],
      "groupIds": [
        1
      ]
    }
  },
  "text": {
    "value": "Example Domain This domain is established to be used for illustrative examples in documents.",
    "exclude": {
      "starts": [
        0
      ],
      "lengths": [
        14
      ],
      "reasons": [
        3
      ]
    },
    "pages": {
      "startPosition": [
        0
      ]
    }
  }
}
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Export Method" icon="file-export" href="/reference/actions/downloads/export/">Learn how to use the export method to retrieve detailed scan results.</Card>
  <Card title="How to Display Scan Reports" icon="file" href="/concepts/features/how-to-display/">Understand how to present crawled versions and other scan data to your users.</Card>
</CardGroup>
