---
title: "Assets"
description: "Assets"
url: "https://www.contentstack.com/docs/developers/sdks/content-delivery-sdk/php/reference/assets"
product: "Contentstack"
doc_type: "guide"
audience:
  - developers
  - admins
version: "current"
last_updated: "2026-06-10"
---

# Assets

## Assets

Assets refer to all the media files (images, videos, PDFs, audio files, and so on) uploaded in your Contentstack repository for future use.

## Query

Query object to create the "Query" on Assets

```
use Contentstack\Contentstack;

$stack = Contentstack::Stack('api_key', 'delivery_token', 'environment');
$result = $stack->Assets()->Query()->find;
```

## fetch

Fetch the specified assets

```
use Contentstack\Contentstack;

$stack = Contentstack::Stack('api_key', 'delivery_token', 'environment');
$result = $stack->Assets('asset_uid')->fetch();
```

Uid for asset to be fetch

## Assets | PHP Delivery SDK | Contentstack

Assets manages the media files such as images, videos, and PDFs stored in your Contentstack repository through the PHP Delivery SDK.