Skip to content

List published background scenes

GET
/v1/backgrounds
curl --request GET \
--url https://example.com/v1/backgrounds \
--header 'Authorization: Bearer <token>'

List selected scene plates visible to the calling client.

This is intentionally distinct from the legacy image-first catalog route: each entry represents a canonical Background and can be passed to a direct composition as background_public_id.

X-Shopify-Hmac-Sha256
Any of:
string

Successful Response

Media typeapplication/json
Response V1 List Backgrounds V1 Backgrounds Get
Array<object>
PublishedBackgroundResponse

Client-safe published Background picker projection.

It exposes the selected visual plate plus compact browse facets, never the raw S3 key, draft IR provenance, or other review candidates.

object
public_id
required
Public Id
string
display_name
required
Display Name
string
preview_url
required
Preview Url
string
summary
required
Summary
string
shared
Shared
boolean
setting
required
Setting
string
topology
required
Topology
string
light_label
required
Light Label
string
palette
Palette
Array<string>
supported_crops
Supported Crops
Array<string>
updated_at
required
Updated At
string format: date-time
Example
[
{
"shared": false
}
]

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}