> For the complete documentation index, see [llms.txt](https://guide.fariaedu.com/integrations-portal/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.fariaedu.com/integrations-portal/openapply/public-rest-apis/v1/supported-endpoints.md).

# Supported Endpoints

## Download an Asset

<mark style="color:green;">`GET`</mark> `/api/v1/secure_downloads/files/{id}`&#x20;

This endpoint will respond with the location to download url in the `location` header.

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |
| auth-token   | `API_TOKEN`        |

**Query**

| Name         | Type   | Description   |
| ------------ | ------ | ------------- |
| `auth_token` | string | The API token |

**Response**

{% tabs %}
{% tab title="200" %}

```
Content-Type: text/html
location: https://openapply-ca-prod.s3.ca-central-1.amazonaws.com/uploads/asset/file/...
```

{% endtab %}

{% tab title="401" %}

```json
{
  "error": "Not authenticated"
}
```

{% endtab %}
{% endtabs %}
