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