v8

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

Get saved extension details

This API returns details of a specific saved extension by ID.

get/v1/saved-extensions/{id}

Path parameters

idstring required

The unique ID of the saved extension.

Response

Saved extension details.

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"
        ]
      }
    ]
  }
}