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

# Response

> Webhook or hit the get project by project id endpoint to get the response

### Get Project By Project Id

You can also hit the get project endpoint to get the response.
Refer to the [Get Project Page](/getProject).

### Webhook Response

When Quickreel completes processing your request, it sends a webhook response to the URL specified in the `webhookUrl` parameter. Below is an example of the response you will receive:

```json theme={null}
{
  "projectId": "676409ad10ded0f9fc89d224",
  "status": "completed",
  "createdAt": "2024-12-19T11:55:25.602Z",
  "completedAt": "2024-12-19T14:22:35.533Z",
  "error": null,
  "outputs": [
    {
      "id": "67640a41df9247bc89de7813",
      "videoUrl": "https://qr-be-api-upload.s3.us-east-1.amazonaws.com/67618d230847a22a7550faf9/676409ad10ded0f9fc89d224/67640a41df9247bc89de7813_final_hook.mp4",
      "thumbnailUrl": "https://qr-be-api-upload.s3.us-east-1.amazonaws.com/67618d230847a22a7550faf9/676409ad10ded0f9fc89d224/67640a41df9247bc89de7813_trim_thumbnail.jpg"
    }
  ]
}
```

**Response Attributes:**

* `projectId`: The unique identifier of the project.
* `status`: The status of the project.
* `createdAt`: The date and time the request was created.
* `completedAt`: The date and time the project was completed.
* `error`: Any error information if applicable.
* `outputs`: An array containing details of each output.
  * `id`: The unique identifier of the output.
  * `videoUrl`: The URL to access the video.
  * `thumbnailUrl`: The URL to access the thumbnail.

### Note on Response Handling:

<Warning>
  You will have to send a 200 status code immediately after receiving the
  response.
</Warning>

<Info>
  If you want more details on handling webhook responses, refer to the [Webhook
  Handling Page](/webhook) in the documentation.
</Info>
