# Get Brand Images

> Learn how to retrieve brand assets from your workspace

- **URL**: https://orshot.com/docs/api-reference/brand-assets-get

---

## Overview

This endpoint allows you to retrieve a list of brand assets (images) from your workspace. Brand assets can be used across your templates and designs.```markdown tab="Endpoint"
https://api.orshot.com/v1/brand-assets/images/get
```## Query Parameters

| Parameter | Type   | Required | Description                                                                                      |
| --------- | ------ | -------- | ------------------------------------------------------------------------------------------------ |
| `tag`     | String | No       | Comma-separated list of tags to filter by. Returns only assets that have **all** specified tags. |

## Request

<Tabs items=>
<Tab value="Request">```js
await fetch("https://api.orshot.com/v1/brand-assets/images/get", {
  method: "GET",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>
<Tab value="Filter by Tags">```js
await fetch("https://api.orshot.com/v1/brand-assets/images/get?tag=logo,brand", {
  method: "GET",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>
<Tab value="Response">```json
{
  "data": [
    {
      "id": 101,
      "created_at": "2025-09-10T15:30:45.123Z",
      "direct_url": "https://storage.orshot.com/brand-assets/workspace_id/brand-asset-1694444444.png",
      "file_name": "brand-asset-1694444444.png",
      "file_size": 42568,
      "meta": {
        "description": "Company logo",
        "category": "logos"
      },
      "tags": ["logo", "brand"],
      "workspace_id": 50,
      "user_id": "abcdef01-2345-6789-abcd-ef0123456789"
    }
  ]
}
```</Tab>
</Tabs>

## Rate Limits

- 30 requests per minute per endpoint

## Response Fields

| Field          | Type     | Description                               |
| -------------- | -------- | ----------------------------------------- |
| `id`           | Number   | Unique identifier for the asset           |
| `created_at`   | String   | Timestamp when the asset was created      |
| `direct_url`   | String   | URL to access the asset                   |
| `file_name`    | String   | Original filename of the asset            |
| `file_size`    | Number   | Size of the file in bytes                 |
| `meta`         | Object   | Custom metadata associated with the asset |
| `tags`         | String[] | Tags associated with the asset            |
| `workspace_id` | Number   | ID of the workspace the asset belongs to  |
| `user_id`      | String   | ID of the user who created the asset      |