Orshot Logo
OrshotDocs

GET: Brand Asset Images

Learn how to retrieve brand assets from your workspace

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.

https://api.orshot.com/v1/brand-assets/images/get

Request

await fetch("https://api.orshot.com/v1/brand-assets/images/get", {
  method: "GET",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});

Rate Limits

  • 30 requests per minute per endpoint

Response Fields

FieldTypeDescription
idStringUnique identifier for the asset
created_atStringTimestamp when the asset was created
direct_urlStringURL to access the asset
file_nameStringOriginal filename of the asset
file_sizeNumberSize of the file in bytes
metaObjectCustom metadata associated with the asset
workspace_idStringID of the workspace the asset belongs to
user_idStringID of the user who created the asset

On this page