---
title: "Retrieve a resource by path."
method: GET
path: "/delivery/v1/resources"
tags: ["Delivery resources"]
---

# Retrieve a resource by path.

`GET /delivery/v1/resources`

This endpoint retrieves the resource at the given path. Restricted resources cannot be accessed. To access those resources too, you have to use /mydelivery/v1/resources.
The resource's path can be obtained using the Authoring assets API: /authoring/v1/assets

    {
        "items": [
            {
                "mediaType": "image/jpeg",
                "name": "myPicture.jpg",
                "path": "/path/to/myPicture.jpg",
                ...

The delivery URL for this endpoint would look like:

    /delivery/v1/resources?path=/path/to/myPicture.jpg

**Note:** This endpoint should not be used for rendering published resources on a site, retrieving resources from Akamai directly is better optimized for this use case.

To retrieve the resource directly from Akamai:

    https://[host]/[TenantID]/path/to/myPicture.jpg
<br />User roles: admin, manager, editor, viewer, authenticatedVisitor, anonymous

## Query parameters

- `path` string, required

## Response `200`

The requested resource.

- string, binary

## Other responses

- `404` — Not found
- `429` — Too Many Requests, the server has reached a limit, the request must be sent again at a later time.
- `default` — Unexpected error

---

[API](https://skmtc.net/goacoustic/apis/acoustic-content-api.md) · [All operations](https://skmtc.net/goacoustic/apis/acoustic-content-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/goacoustic/acoustic-content-api/revisions/677305266d89/schema)
