# Using a Webhook to Get Results

The webhook feature simplifies getting analyses' results. Instead of polling after the analyses are launched, add a webhook that will call your website once the results are ready.

When you create a folder, add the webhook endpoint (`resolution_endpoint`) into the payload section of your request body:

<figure><img src="https://2532558063-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F5g6dgsxRbyrCvB0uAf8f%2Fuploads%2Fs6hgL8RJpNvWg8wr0Hs6%2FScreenshot_87.png?alt=media&#x26;token=240fd9f8-18b2-4578-b006-a55ae325847d" alt=""><figcaption><p>Postman</p></figcaption></figure>

{% code title="Payload example" %}

```json
{    
  "resolution_endpoint": "address.com", // use address of your website here
    ... // other request details - folder etc.
}
```

{% endcode %}

You'll receive a notification each time the analyses are completed for this folder. The webhook request will contain information about the folder and its corresponding analyses.
