GET /accounts/{account_id}/images/v2

List up to 10000 images with up to 1000 results per page. Use the optional parameters below to get a specific range of images. Pagination is supported via continuation_token.

Metadata Filtering (Optional):

You can optionally filter images by custom metadata fields using the meta.<field>[<operator>]=<value> syntax.

Supported Operators:

Metadata Filter Constraints:

Examples:

# List all images
/images/v2

# Filter by metadata [eq]
/images/v2?meta.status[eq:string]=active

# Filter by metadata [in]
/images/v2?meta.status[in]=pending|deleted|flagged

# Filter by metadata [in:number]
/images/v2?meta.ratings[in:number]=4|5

# Filter by nested metadata
/images/v2?meta.region.name[eq]=eu-west

# Combine metadata filters with creator
/images/v2?meta.status[eq]=active&creator=user123

# Multiple metadata filters (AND logic)
/images/v2?meta.status[eq]=active&meta.priority[eq:number]=5

Servers

Path parameters

Name Type Required Description
account_id String Yes

Query parameters

Name Type Required Description
meta.[] String No

Optional metadata filter(s). Multiple filters can be combined with AND logic.

Operators:

  • eq, eq:string, eq:number, eq:boolean - Exact match
  • in, in:string, in:number - Match any value in pipe-separated list

Examples:

  • meta.status[eq]=active
  • meta.priority[eq:number]=5
  • meta.enabled[eq:boolean]=true
  • meta.region[in]=us-east|us-west|eu-west
sort_order String No

Valid values:

  • "desc"
  • "asc"

Default value: "desc"

continuation_token String No
per_page Number No

Default value: 1000

creator String No

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.