GET
$0.05 default
/resources/imageDescription
List image resources in the Cloudinary product environment. Supports pagination with max_results and next_cursor.
Pricing
$0.05 default
Parameters
{
"max_results": {
"required": false,
"type": "integer"
},
"next_cursor": {
"required": false,
"type": "string"
},
"prefix": {
"required": false,
"type": "string"
},
"tags": {
"required": false,
"type": "boolean"
}
}Response schema
{
"properties": {
"next_cursor": {
"type": [
"string",
"null"
]
},
"resources": {
"type": "array"
}
},
"type": "object"
}Example response
{
"next_cursor": null,
"resources": [
{
"format": "jpg",
"public_id": "sample",
"resource_type": "image",
"secure_url": "https://res.cloudinary.com/..."
}
]
}