**Source URL:** https://limited.veevavault.dev/quality/vault-api/api-reference/20.1/vault-loader/multi-file-extract/retrieve-loader-extract-results.md

# Retrieve Loader Extract Results



After submitting a request to extract object types from your Vault, you can query Vault to retrieve results of a specified job task.

<Endpoint path="/api/{version}/services/loader/{job_id}/tasks/{task_id}/results" method="GET"></Endpoint>

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `text/csv` |
</FieldTable>

## URI Path Parameters {#uri-path-parameters}

<FieldTable>
| Name | Description |
| --- | --- |
| `job_id` | The `id` value of the requested extract job. |
| `task_id` | The `id` value of the requested extract task. |
</FieldTable>

## Request {#request}

<CodeExample title="">
```
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v19.2/services/loader/61907/tasks/2/results

```
</CodeExample>

## Response (CSV) {#response-csv}

<CodeExample title="">
```
file,rendition_type__v,id,name__v,type__v
/61915/50/0_1/renditions/viewable_rendition__v.pdf,viewable_rendition__v,50,Facts about High Cholesterol Spring 2016,Promotional Material
/61915/8/0_1/renditions/viewable_rendition__v.pdf,viewable_rendition__v,8,ashley-harvey,Personnel

```
</CodeExample>

## Response Details {#response-details}

On SUCCESS, the response includes a CSV file of the results of a specific extract job task.



---

**Previous:** [Extract Data Files](/quality/vault-api/api-reference/20.1/vault-loader/multi-file-extract/extract-data-files)  
**Next:** [Retrieve Loader Extract Renditions Results](/quality/vault-api/api-reference/20.1/vault-loader/multi-file-extract/retrieve-loader-extract-renditions-results)