List published background scenes
GET
/v1/backgrounds
const url = 'https://example.com/v1/backgrounds';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response V1 List Backgrounds V1 Backgrounds Get
Array<object>
PublishedBackgroundResponseClient-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>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}