# New Result

> A new result was found during the scan process.

The new results webhook is triggered when a new plagiarism result is found during the scan process. __When you receive this webhook, the scan is still in progress.__

<ParamField path="score" type="number">
  The current score of the scan up to this point.
</ParamField>
<ParamField path="developerPayload" type="string">
  The developer payload that was provided in the submit method.
</ParamField>
<Results />

## Example

```json
{
  "score": 0,
  "developerPayload": "string",
  "internet": [
    {
      "id": "string",
      "title": "string",
      "introduction": "string",
      "matchedWords": 0,
      "url": "string",
      "metadata": {
        "finalUrl": "string",
        "canonicalUrl": "string",
        "author": "string",
        "organization": "string",
        "filename": "string",
        "publishDate": "string",
        "creationDate": "string",
        "lastModificationDate": "string"
      }
    }
  ],
  "database": [
    {
      "id": "string",
      "title": "string",
      "introduction": "string",
      "matchedWords": 0,
      "scanId": "string",
      "metadata": {
        "finalUrl": "string",
        "canonicalUrl": "string",
        "author": "string",
        "organization": "string",
        "filename": "string",
        "publishDate": "string",
        "creationDate": "string",
        "lastModificationDate": "string"
      }
    }
  ],
  "batch": [
    {
      "id": "string",
      "title": "string",
      "introduction": "string",
      "matchedWords": 0,
      "scanId": "string",
      "metadata": {
        "finalUrl": "string",
        "canonicalUrl": "string",
        "author": "string",
        "organization": "string",
        "filename": "string",
        "publishDate": "string",
        "creationDate": "string",
        "lastModificationDate": "string"
      }
    }
  ],
  "repositories": [
    {
      "id": "string",
      "title": "string",
      "introduction": "string",
      "matchedWords": 0,
      "repositoryId": "string",
      "scanId": "string",
      "metadata": {
        "finalUrl": "string",
        "canonicalUrl": "string",
        "author": "string",
        "organization": "string",
        "filename": "string",
        "publishDate": "string",
        "creationDate": "string",
        "lastModificationDate": "string",
        "submittedBy": "string"
      }
    }
  ]
}
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Webhooks Overview" icon="plug" href="/reference/data-types/authenticity/webhooks/overview/">Learn about the different types of webhooks and how to handle them.</Card>
  <Card title="Export Method" icon="file-export" href="/reference/actions/downloads/export/">Learn how to export scan results, including new plagiarism results.</Card>
  <Card title="How to Display Scan Reports" icon="magnifying-glass" href="/concepts/features/how-to-display/">Understand how to present new results to your users effectively.</Card>
</CardGroup>
