**Source URL:** https://limited.veevavault.dev/vault-api/api-reference/24.3/logs/sdk-request-profiler/download-profiling-session-results.md

# Download Profiling Session Results



Download the Profiler Log for a specific profiling session. A profiling session log is a CSV which contains one row for each SDK request, with a maximum of 100,000 rows.

<Endpoint path="/api/{version}/code/profiler/{session_name}/results" method="GET"></Endpoint>

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Accept` | `application/json` |
</FieldTable>

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

<FieldTable>
| Name | Description |
| --- | --- |
| `{session_name}` | The `name` of the session, for example,  `baseline__c`. |
</FieldTable>

## Request {#request}

<CodeExample title="">
```
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v24.3/code/profiler/baseline__c/results > file

```
</CodeExample>

## Response Headers {#response-headers}

<CodeExample title="">
```
Content-Type: application/zip;charset=UTF-8
Content-Disposition: attachment;filename="baseline__c.zip"

```
</CodeExample>

## Response Details {#response-details}

On `SUCCESS`, Vault downloads the results of the specified profiling session. The HTTP Response Header `Content-Type` is set to `application/zip`. The HTTP Response Header `Content-Disposition` contains a filename component which can be used when naming the local file.

The log is a CSV file with the following information for each SDK request:



---

**Previous:** [Delete Profiling Session](/vault-api/api-reference/24.3/logs/sdk-request-profiler/delete-profiling-session)  
**Next:** [Retrieve Email Notification Histories](/vault-api/api-reference/24.3/logs/retrieve-email-notification-histories)