v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-214977372.7 KB
Digital Asset Management (DAM)
Saved Extensions

List all saved extensions

This API returns an array of all saved extensions for your account. Saved extensions allow you to save complex extension configurations and reuse them by referencing them by ID in upload or update file APIs.

get/v1/saved-extensions

Response

Array of saved extension objects.

idstring

Unique identifier of the saved extension.

namestring

Name of the saved extension.

descriptionstring

Description of the saved extension.

createdAtstring date-time

Timestamp when the saved extension was created.

updatedAtstring date-time

Timestamp when the saved extension was last updated.

Example response

[
  {
    "id": "ext_abc123",
    "name": "Car Quality Analysis",
    "description": "Analyzes vehicle images for type, condition, and quality assessment",
    "config": {
      "tasks": [
        {
          "instruction": "What types of clothing items are visible in this image?",
          "vocabulary": [
            "shirt",
            "tshirt",
            "dress",
            "trousers",
            "jacket"
          ]
        }
      ]
    }
  }
]