Upload API reference
The upload API consists of a number of methods for uploading and managing media assets in the cloud. The REST API methods can be called directly from within your own custom code or by using one of Cloudinary's SDKs that wrap the REST API and greatly simplify using its methods.
Authenticated uploading is done over HTTPS using a secure protocol based on your account's cloud_name
, api_key
and api_secret
parameters. When using Cloudinary's SDKs, these parameters are generally configured globally but they can be provided with each call instead.
After you upload files, you can use the Cloudinary Admin API, which has useful methods for managing and organizing your media assets, such as listing all uploaded assets, listing tags, finding all assets that share a given tag, updating transformations, bulk deleting, and more.
- For more in-depth documentation and general information on uploading media assets see the Media upload documentation.
- SDK-specific documentation can be found in the SDK Guides.
- For more information on calling the REST API methods directly, see the documentation on Uploading with a direct call to the API.
- For instructions on setting up and using the CLI to access the upload API methods see the CLI reference.
Upload method
The upload
method is used to upload assets to the cloud.
For additional information and examples, see the Media upload documentation. The Cloudinary SDKs wrap the upload method and offer two separate methods: one for signed uploading and one for unsigned uploading.
Signed upload syntax
POST /:resource_type/upload
Unsigned upload syntax
POST /:resource_type/upload
Required parameters
Parameter | Type | Description |
---|---|---|
file | String | The file to upload. It can be:
|
upload_preset | String | (Required for unsigned uploading / optional for signed uploading) Name of an upload preset that you defined for your Cloudinary account. An upload preset consists of upload parameters centrally managed using the Admin API or from the settings page of the management console. An upload preset may be marked as unsigned, which allows unsigned uploading directly from the browser and restricts the optional parameters to: public_id , folder , tags , context , face_coordinates and custom_coordinates . |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
Naming and storage: |
||
public_id | String | The identifier that is used for accessing the uploaded asset. The Public ID may contain a full path including folders separated by a slash (/ ). If not specified, then the Public ID of the asset will either be comprised of random characters or will use the original file's filename, depending whether use_filename was set to true.Note: The Public ID value for images and videos should not include a file extension. Include the file extension for raw files only. |
folder | String | An optional folder name where the uploaded asset will be stored. The public ID contains the full path of the uploaded asset, including the folder name. |
use_filename | Boolean | Whether to use the original file name of the uploaded asset. Relevant only if the public_id parameter isn't set. When false and the public_id parameter is also not defined, the Public ID will be comprised of random characters. When true and the public_id parameter is not defined, the uploaded file's original filename becomes the Public ID. Random characters are appended to the filename value to ensure Public ID uniqueness if unique_filename is true. Default: false . |
unique_filename | Boolean | When set to false, does not add random characters at the end of the filename that guarantee its uniqueness. In this case, if the overwrite parameter is also false, the upload returns an error. This parameter is relevant only if use_filename is also set to true. Default: true . |
resource_type | String | Set the type of file you are uploading or use auto to automatically detect the file type. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , video and auto . Defaults: image for server-side uploading and auto for client-side uploading.Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
type | String | The delivery type. Allows uploading assets as private or authenticated instead of the default upload mode. Only relevant as a parameter when using the SDKs (the delivery type value is part of the endpoint URL when using the REST API). Valid values: upload , private and authenticated . Default: upload . |
access_control | JSON | An array of access types for the asset. The asset is accessible as long as one of the access types is valid. Possible values for each access type: - token requires either Token-based authentication or Cookie-based authentication for accessing the asset. For example: access_type: "token" - anonymous allows public access to the asset. The anonymous access type can optionally include start and/or end dates (in ISO 8601 format) that define when the asset is publically available. Note that you can only include a single 'anonymous' access type. For example: access_type: "anonymous", start: "2017-12-15T12:00Z", end: "2018-01-20T12:00Z" |
access_mode | String | Allows the asset to behave as if it's of the authenticated 'type' (see above) while still using the default 'upload' type in delivery URLs. The asset can later be made public by changing its access_mode via the Admin API, without having to update any delivery URLs. Valid values: public , and authenticated . Default: public . |
discard_original_filename | Boolean | Whether to discard the name of the original uploaded file. Relevant when delivering assets as attachments (setting the flag transformation parameter to attachment ). Default: false . |
overwrite | Boolean | Whether to overwrite existing assets with the same Public ID. When set to false, a response is returned immediately if an asset with the same Public ID was found. When overwriting assets, if you include versions in your delivery URLs, you will need to update the URLs with the new version number to deliver the new asset. If you don't include versions, you will need to invalidate the old assets on the CDN server cache. Default: true (when using unsigned upload, the default is false and cannot be changed to true). Important: Depending on the settings for your account, overwriting an asset may clear the tags, contextual, and structured metadata values for that asset. If you have a master admin role, you can change this behavior for your account in the Media Library Preferences pane, so that these field values are retained when new version assets overwrite older ones (unless you specify different values for the |
Resource data: |
||
tags | String | A comma-separated list of tag names to assign to the uploaded asset for later group reference. For example: animal,dog SDKs: Supports arrays. For example: ['animal', 'dog'] |
context | String | A pipe-separated list of the key-value pairs of contextual metadata to attach to an uploaded asset. The contextual metadata values of uploaded files can be retrieved using the Admin API. For example: alt=My image❘caption=Profile image Notes:
['alt': 'My image', 'caption': 'Profile image'] |
metadata | String | (Not supported for SDKs) A pipe-separated list of custom metadata fields (by external_id) and the values to assign to each of them. For example: in_stock_id=50❘color_id=[\"green\",\"red\"] .Notes:
|
colors | Boolean | Whether to retrieve predominant colors & color histogram of the uploaded image. Note:If all returned colors are opaque, then 6-digit RGB hex values are returned. If one or more colors contain an alpha channel, then 8-digit RGBA hex quadruplet values are returned. Default: false . Relevant for images only. |
faces | Boolean | Whether to return the coordinates of faces contained in an uploaded image (automatically detected or manually defined). Each face is specified by the X & Y coordinates of the top left corner and the width & height of the face. The coordinates for each face are returned as an array (using the SDKs) or a comma-separated list (for REST API calls), and individual faces are separated with a pipe (❘ ). For example: 10,20,150,130❘213,345,82,61 . Default: false . Relevant for images only. |
quality_analysis | Boolean | Whether to return a quality analysis value for the image between 0 and 1, where 0 means the image is blurry and out of focus and 1 means the image is sharp and in focus. Default: false . Relevant for images only.Paid customers can request to take part in the extended quality analysis Beta trial. When activated, this parameter returns quality scores for various other factors in addition to focus , such as jpeg_quality , noise , exposure , lighting and resolution , together with an overall weighted quality_score . The quality_score , quality_analysis.color_score and quality_analysis.pixel_score fields can be used in the Search API. |
accessibility_analysis | Boolean | Currently available only to paid customers requesting to take part in the accessibility analysis Beta trial. Set to true to return accessibility analysis values for the image and to enable the accessibility_analysis.colorblind_accessibility_score field to be used in the Search API.Default: false . Relevant for images only. |
cinemagraph_analysis | Boolean | Whether to return a cinemagraph analysis value for the media asset between 0 and 1, where 0 means the asset is not a cinemagraph and 1 means the asset is a cinemagraph. Default: false . Relevant for animated images and video only. A static image will return 0. |
image_metadata | Boolean | Whether to return IPTC, XMP, and detailed Exif metadata of the uploaded asset in the response. Default: false . Supported for images, video, and audio.
Metadata .) |
phash | Boolean | Whether to return the perceptual hash (pHash) on the uploaded image. The pHash acts as a fingerprint that allows checking image similarity. Default: false . Relevant for images only. |
responsive_breakpoints | [JSON] | Requests that Cloudinary automatically find the best breakpoints. The parameter value is an array of breakpoint request settings, where each request setting can include the following parameters:
transformation , width , height , bytes , url and secure_url . Relevant for images only. |
auto_tagging | Decimal | Automatically assigns tags to an asset according to detected objects or categories with a confidence score higher than the specified value. Use together with the Use together with the |
categorization | String | A comma-separated list of the categorization add-ons to run on the asset. Set to google_tagging , google_video_tagging , imagga_tagging and/or aws_rek_tagging to automatically classify the scenes of the uploaded asset. Can be used together with the auto_tagging parameter to apply tags automatically. See the Google Automatic Video Tagging, Google Auto Tagging, Imagga Auto Tagging and Amazon Rekognition Auto Tagging add-ons for more details. |
detection | String | Invokes the relevant add-on to return a list of detected content. Set to:
Relevant for images only. |
ocr | String | Set to adv_ocr to extract all text elements in an image as well as the bounding box coordinates of each detected element using the OCR text detection and extraction add-on.Relevant for images only. |
exif | Boolean | Whether to retrieve the Exif metadata of the uploaded photo. Default: false. Deprecated - use image_metadata instead |
Manipulations: |
||
eager | String | A list of transformations to create for the uploaded asset, instead of lazily creating them when first accessed by your site's visitors (see the Transformation URL API Reference for more details on possible values). This option accepts either a single transformation or a pipe-separated list of transformations to create for the uploaded asset.SDKs: Supports arrays. (In .NET SDK, parameter name is EagerTransforms .) |
eager_async | Boolean | Whether to generate the eager transformations asynchronously in the background after the upload request is completed rather than online as part of the upload call. Default: false . |
eager_notification_url | String | An HTTP or HTTPS URL to send a notification to (a webhook) when the generation of eager transformations is completed. |
transformation | String | An incoming transformation to run on the uploaded asset before saving it in the cloud. This parameter is given as a string of comma-separated single characters (separated with a slash for chained transformations).SDKs: Supports a hash of transformation parameters (or an array of hashes for chained transformations). Note: When using the SDK for a dynamically-typed language such as Ruby, the transformation parameters can be specified directly without using this transformation parameter. |
format | String | An optional format to convert the uploaded asset to before saving in the cloud. For example: jpg . |
custom_coordinates | String | Sets the coordinates of a single region contained in an uploaded image that is subsequently used for cropping uploaded images using the custom gravity mode. The region is specified by the X & Y coordinates of the top left corner and the width & height of the region, as a comma-separated list. For example: 85,120,220,310 . Relevant for images only.SDKs: Supports arrays. For example: [85, 120, 220, 310] |
face_coordinates | String | Sets the coordinates of faces contained in an uploaded image and overrides the automatically detected faces. Each face is specified by the X & Y coordinates of the top left corner and the width & height of the face. The coordinates for each face are given as a comma-separated list, with individual faces separated with a pipe (❘ ). For example: 10,20,150,130❘213,345,82,61 . Relevant for images only.SDKs: Supports arrays. For example: [[10, 20, 150, 130],[213, 345, 82, 61]] |
background_removal | String | Automatically remove the background of an image using an add-on.
|
raw_convert | String | Asynchronously generates a related file based on the uploaded file.
|
Additional options: |
||
allowed_formats | String | A comma-separated list of file formats that are allowed for uploading. Files of other types will be rejected. The formats can be any combination of image types, video formats or raw file extensions. For example: mp4,ogv,jpg,png,pdf . Default: any supported format for images and videos, and any kind of raw file (i.e. no restrictions by default). SDKs: Supports arrays. For example: [mp4, ogv, jpg, png, pdf] |
async | Boolean | Tells Cloudinary whether to perform the upload request in the background (asynchronously). Default: false . |
backup | Boolean | Tell Cloudinary whether to back up the uploaded asset. Overrides the default backup settings of your account. |
callback | String | A URL to redirect to after the upload is completed instead of returning the upload response. Signed upload result parameters are added to the callback URL. This parameter is ignored for XHR (Ajax XMLHttpRequest) upload requests. Note: This parameter is relevant for direct uploads from a form in the browser. It is automatically set if you perform direct upload from the browser using Cloudinary's SDKs and the jQuery plugin. |
eval | String | Allows you to modify upload parameters by specifying custom logic with JavaScript. This can be useful for conditionally adding tags, contextual metadata, structured metadata or eager transformations depending on specific criteria of the uploaded file. For more details see Evaluating and modifying upload parameters. |
headers | String | An HTTP header or a list of headers lines for adding as response HTTP headers when delivering the asset to your users. Supported headers: Link , Authorization , X-Robots-Tag . For example: X-Robots-Tag: noindex . |
invalidate | Boolean | Whether to invalidate CDN cached copies of a previously uploaded asset (and all transformed versions that share the same Public ID). Default: false . It usually takes between a few seconds and a few minutes for the invalidation to fully propagate through the CDN. There are also a number of other important considerations when using the invalidate functionality. |
moderation | String | For all asset types: Set to manual to add the uploaded asset to a queue of pending assets that can be moderated using the Admin API or the Cloudinary Management Console, or set to metascan to automatically moderate the uploaded asset using the MetaDefender Anti-Malware Protection add-on. For images only: Set to webpurify or aws_rek to automatically moderate the uploaded image using the WebPurify Image Moderation add-on or the Amazon Rekognition AI Moderation add-on respectively. |
notification_url | String | An HTTP or HTTPS URL to receive the upload response (a webhook) when the upload or any requested asynchronous action is completed. If not specified, the response is sent to the global Notification URL (if defined) in the Upload settings of your account console. |
proxy | String | Tells Cloudinary to upload assets from remote URLs through the given proxy. Format: https://hostname:port . |
return_delete_token | Boolean | Whether to return a deletion token in the upload response. The token can be used to delete the uploaded asset within 10 minutes using an unauthenticated API request. Default: false . |
Unsigned upload parameters
Unsigned requests are restricted to the following allowed parameters: public_id
, folder
, callback
, tags
, context
, face_coordinates
(images only), custom_coordinates
(images only), and upload_preset
. Most of the other upload parameters can be defined in your upload_preset
.
Additionally, although the public_id
parameter can be specified, the overwrite
parameter is always set to 'false' for unsigned uploads to prevent overwriting existing files.
Examples
To upload an image by specifying the local path /home/sample.jpg
:
let params = CLDUploadRequestParams() var mySig = MyFunction(params) // your own function that returns a signature generated on your backend params.setSignature(CLDSignature(signature: mySig.signature, timestamp: mySig.timestamp)) let request = cloudinary.createUploader().signedUpload( url: "/home/sample.jpg", params: params)
To upload an image from a remote url: https://www.example.com/sample.jpg
and request Cloudinary to find the best breakpoints based on the following guidelines: a minimum width of 200 pixels, a maximum width of 1000 pixels, at least 20000 bytes file size difference between the breakpoints, while keeping the generated derived images:
var uploadParams = new ImageUploadParams(){ File = new FileDescription(@"https://www.example.com/sample.jpg"), ResponsiveBreakpoints = new List<ResponsiveBreakpoint> { new ResponsiveBreakpoint() .CreateDerived(true) .BytesStep(20000) .MinWidth(200) .MaxWidth(1000)}}; var uploadResult = cloudinary.Upload(uploadParams);
let responsive = CLDResponsiveBreakpoints(createDerived: true, bytesStep: 2000, minWidth: 200, maxWidth: 1000) let params = CLDUploadRequestParams().setResponsiveBreakpoints(responsive) var mySig = MyFunction(params) // your own function that returns a signature generated on your backend params.setSignature(CLDSignature(signature: mySig.signature, timestamp: mySig.timestamp)) let request = cloudinary.createUploader().signedUpload( url: "https://www.example.com/sample.jpg", params: params)
To upload an image from a remote FTP private server ftp://ftp.example.com/sample.jpg
with a username of user1
and a password of mypass
. Two transformed images are also eagerly generated as follows:
- Pad to a width of 400 pixels and height of 300 pixels.
- Crop to a width of 260 pixels and a height of 200 pixels with north gravity.
var uploadParams = new ImageUploadParams(){ File = new FileDescription(@"ftp://user1:mypass@ftp.example.com/sample.jpg"), EagerTransforms = new List<Transformation>(){ new EagerTransformation().Width(400).Height(300).Crop("pad"), new EagerTransformation().Width(260).Height(200).Crop("crop").Gravity("north")}}; var uploadResult = cloudinary.Upload(uploadParams);
let eager1 = CLDEagerTransformation() .setWidth(400).setHeight(300).setCrop("pad") let eager2 = CLDEagerTransformation() .setWidth(260).setHeight(200).setCrop("crop").setGravity("north") let params = CLDUploadRequestParams().setEager([eager1, eager2]) var mySig = MyFunction(params) // your own function that returns a signature generated on your backend params.setSignature(CLDSignature(signature: mySig.signature, timestamp: mySig.timestamp)) let request = cloudinary.createUploader().signedUpload(url: "ftp://user1:mypass@ftp.example.com/sample.jpg", params: params)
Sample response
The following is a sample response based on the example above. sample.jpg
was uploaded with two eager transformations. Because no public_id was specified in the upload, a random public_id was assigned.
{ "asset_id": "b5e6d2b39ba3e0869d67141ba7dba6cf", "public_id": "eneivicys42bq5f2jpn2", "version": 1570979139, "version_id": "98f52566f43d8e516a486958a45c1eb9", "signature": "abcdefghijklmnopqrstuvwxyz12345", "width": 1000, "height": 672, "format": "jpg", "resource_type": "image", "created_at": "2017-08-11T12:24:32Z", "tags": [], "pages": 1, "bytes": 350749, "type": "upload", "etag": "5297bd123ad4ddad723483c176e35f6e", "placeholder": false, "url": "http://res.cloudinary.com/demo/image/upload/v1570979139/eneivicys42bq5f2jpn2.jpg", "secure_url": "https://res.cloudinary.com/demo/image/upload/v1570979139/eneivicys42bq5f2jpn2.jpg", "access_mode": "public", "original_filename": "sample", "eager": [ { "transformation": "c_pad,h_300,w_400", "width": 400, "height": 300, "url": "http://res.cloudinary.com/demo/image/upload/c_pad,h_300,w_400/v1570979139/eneivicys42bq5f2jpn2.jpg", "secure_url": "https://res.cloudinary.com/demo/image/upload/c_pad,h_300,w_400/v1570979139/eneivicys42bq5f2jpn2.jpg" }, { "transformation": "c_crop,g_north,h_200,w_260", "width": 260, "height": 200, "url": "http://res.cloudinary.com/demo/image/upload/c_crop,g_north,h_200,w_260/v1570979139/eneivicys42bq5f2jpn2.jpg", "secure_url": "https://res.cloudinary.com/demo/image/upload/c_crop,g_north,h_200,w_260/v1570979139/eneivicys42bq5f2jpn2.jpg" }] }
Rename method
Renamed assets are immediately and permanently updated in your cloud storage with the rename
method.
To bypass the CDN caching, you can include the invalidate
parameter in your POST request in order to also invalidate the cached copies of the asset on the CDN. It usually takes between a few seconds and a few minutes for the invalidation to fully propagate through the CDN. For details on invalidating assets, see Invalidating cached media assets on the CDN.
Syntax
POST /:resource_type/rename
Required parameters
Parameter | Type | Description |
---|---|---|
from_public_id | String | The current identifier of the uploaded asset. |
to_public_id | String | The new identifier to assign to the uploaded asset. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
resource_type | String | The type of asset to rename. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , and video . Default: image . Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
type | String | The delivery type of the asset. Only relevant as a parameter when using the SDKs (the delivery type is included in the endpoint URL when using the REST API). Valid values: upload , private and authenticated . Default: upload . |
to_type | String | The new type for the asset. Valid values: upload , private and authenticated . Default: the asset's current type is unchanged. |
overwrite | Boolean | Whether to overwrite an existing asset with the target public ID. Default: false .Important: Depending on the settings for your account, overwriting an asset may clear the tags, contextual, and structured metadata values for that asset. If you have a master admin role, you can change this behavior for your account in the Media Library Preferences pane, so that these field values are retained when new version assets overwrite older ones (unless you specify different values for the |
invalidate | Boolean | Whether to invalidate CDN cached copies of the asset (and all its transformed versions). Default: false . It usually takes between a few seconds and a few minutes for the invalidation to fully propagate through the CDN. There are also a number of other important considerations when using the invalidate functionality |
Example
To rename an image from canyon
to grand_canyon
:
Sample response
The following is a sample response based on the example above. The canyon
image was renamed to grand_canyon
.
{ "asset_id": "b5e6d2b39ba3e0869d67141ba7dba6ce", "public_id": "grand_canyon", "version": 1570979583, "version_id": "98f52566f43d8e516a486958a45c1eb0", "signature": "abcdefghijklmnopqrstuvwxyz12345", "width": 2896, "height": 1944, "format": "jpg", "resource_type": "image", "created_at": "2017-08-11T12:31:13Z", "tags": [], "bytes": 1414789, "type": "upload", "placeholder": false, "url": "http://res.cloudinary.com/demo/image/upload/v1570979583/grand_canyon.jpg", "secure_url": "https://res.cloudinary.com/demo/image/upload/v1570979583/grand_canyon.jpg", "access_mode": "public" }
Destroy method
The destroy
method is used to immediately and permanently delete a single asset from your Cloudinary account (to delete multiple assets see the Admin API Delete resources method). Backed up assets are not deleted, and any assets and transformed assets already downloaded by visitors to your website might still be accessible through cached copies on the CDN.
To bypass the CDN caching, you can include the invalidate
parameter in your POST request in order to also invalidate the cached copies of the asset on the CDN. It usually takes between a few seconds and a few minutes for the invalidation to fully propagate through the CDN. For details on invalidating media assets, see Invalidating cached media assets on the CDN.
Syntax
POST /:resource_type/destroy
Required parameters
Parameter | Type | Description |
---|---|---|
public_id | String | The identifier of the uploaded asset. Note: The public ID value for images and videos should not include a file extension. Include the file extension for raw files only. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
resource_type | String | The type of asset to destroy. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , and video . Default: image . Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
type | String | The delivery type of the asset. Only relevant as a parameter when using the SDKs (the type is included in the endpoint URL when using the REST API). Default: upload . For a list of all possible delivery types, see Delivery types. |
invalidate | Boolean | If true, invalidates CDN cached copies of the asset (and all its transformed versions). Default: false . It usually takes between a few seconds and a few minutes for the invalidation to fully propagate through the CDN. There are also a number of other important considerations when using the invalidate functionality. |
Examples
Deleting an image with the Public ID of sample
:
Deleting a video with the Public ID of sample
:
Sample response
A successful destroy
operation returns the following:
Download_backup method
The download_backup
method returns a specific version of a backed up asset without restoring it in your Media Library.
- The endpoint returns the specified version of the asset in bytes.
- The SDKs return a URL of the asset that can be used to download that version of the asset (within an hour of the request).
Syntax
GET /download_backup
Required parameters
Parameter | Type | Description |
---|---|---|
asset_id | String | The identifier of the uploaded asset. Note: This is returned in the response to various admin API methods. |
version_id | String | The identifier of a backed up version of the asset. Note: To see details of backed up versions, including version_id , for a specific asset, use the resource method of the admin API, setting the versions parameter to true. |
Example
To return the URL of a backed up version of an asset with asset_id
of 62c2a18d622be7e190d21df8e05b1416
and version_id
of 26fe6d95df856f6ae12f5678be94516a
(the cURL example returns the asset in bytes):
Sample response
The following is a sample SDK response based on the example above. The URL to download the requested backed up version of the asset is returned.
https://api.cloudinary.com/v1_1/demo/download_backup?timestamp=173719931&asset_id=62c2a18d622be7e190d21df8e05b1416&version_id=26fe6d95df856f6ae12f5678be94516a&signature=c9937fe93eb655ce04633034f921b83969eff9aa&api_key=323127161127519
Tags method
Tags are used to categorize and organize your assets, and can also be used to apply group actions to assets, for example to delete assets, create sprites, ZIP files, JSON lists, or animated GIFs. Each asset can be assigned one or more tags, which is a short name (up to 255 characters) that you can dynamically use (no need to predefine tags).
The tags
method can be used to manage tags by setting the value of the command
parameter to either add
, remove
, remove_all
, or replace
tags.
Adding tags syntax
POST /:resource_type/tags
Removing tags syntax
POST /:resource_type/tags
Removing all tags syntax
POST /:resource_type/tags
Replacing tags syntax
POST /:resource_type/tags
Required parameters
Parameter | Type | Description |
---|---|---|
tag | String | The tag to assign, remove, or replace. Not relevant when removing all tags. |
public_ids | String | A list of public IDs (up to 1000) of assets uploaded to Cloudinary. |
command | String | (Only relevant when using the REST API or the .NET SDK - not for use with other SDKs) The action to perform on the assets: either add the given tag, remove the given tag, remove_all the tags assigned, or replace the given tag, which adds the given tag while removing all other tags assigned. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
resource_type | String | The type of asset. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , and video . Default: image . Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
type | String | The delivery type of the asset. Only relevant as a parameter when using the SDKs (the delivery type is included in the endpoint URL when using the REST API). Default: upload . For a list of possible delivery types, see Delivery types. |
Examples
To add the tag animal
to the images with the Public IDs of dog
and lion
To remove the tag animal
from the images with the Public IDs of dog
and lion
To remove all existing tags for the images with the Public IDs of dog
and lion
To replace all existing tags with the tag animal
for the images with the Public IDs of dog
and lion
Sample response
The following is a sample response based on the example above. A tag was added to the dog
and lion
images.
Context method
The context
parameter of an uploaded asset contains a pipe-separated list of key-value pairs of contextual metadata (up to 255 characters). The context
method can be used to manage the contextual metadata of an uploaded asset by setting the value of the command
parameter to either add
a new key-value pair, or remove_all
contextual metadata from the asset.
context
method and offer 2 separate methods: one for adding contextual metadata and one for removing all contextual metadata.Adding context syntax
POST /:resource_type/context
Removing all context syntax
POST /:resource_type/context
Required parameters
Parameter | Type | Description |
---|---|---|
context | String | (Only relevant when adding contextual metadata) A pipe-separated list of the key-value pairs of contextual metadata to attach to an uploaded asset. The contextual metadata values of uploaded files can be retrieved using the Admin API. For example: alt=My image❘caption=Profile image Notes:
['alt': 'My image', 'caption': 'Profile image'] |
public_ids | String[] | An array of Public IDs of assets uploaded to Cloudinary. |
command | String | (Only relevant when using the REST API - not for use with SDKs) The action to perform on assets: either add the specified contextual metadata, or remove_all the contextual metadata key-value pairs assigned. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
resource_type | String | The type of asset. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , and video . Default: image . Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
type | String | The delivery type of the asset. Only relevant as a parameter when using the SDKs (the delivery type is included in the endpoint URL when using the REST API). Default: upload . For a list of possible delivery types, see Delivery types. |
Examples
To add the contextual metadata key-pairs alt=Animal
and class=Mammalia
to the images with the Public IDs of dog
and lion
To remove all existing contextual metadata for the images with the Public IDs of dog
and lion
Sample response
The following is a sample response based on the example above. A contextual metadata value was added to the dog
and lion
images.
Metadata method
The metadata
parameter of an uploaded asset contains a map (supported for Java SDK only) or pipe-separated list (for REST API calls) of key-value pairs of custom predefined metadata fields. The metadata
method can be used to add values to these metadata fields.
Syntax
POST /:resource_type/metadata
Map result = cloudinary.uploader().updateMetadata(Map metadata, String[] public_ids, Map options);
Required parameters
Parameter | Type | Description |
---|---|---|
metadata | String | A map (supported for Java SDK only) or pipe-separated list (for REST API calls) of custom metadata fields (by external_id) and the values to assign to each of them. Any metadata-value pairs given are merged with any existing metadata-value pairs (an empty value for an existing metadata field clears the value). The = , " and ❘ characters can be supported as values when escaped with a prepended backslash (\ ). |
public_ids | String[] | An array of Public IDs of assets uploaded to Cloudinary. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
resource_type | String | The type of asset. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , and video . Default: image . Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
type | String | The delivery type. Valid values: upload , private and authenticated . Default: upload |
Example
To add the datasource IDs of "id_us", "id_uk", and "id_france" to the metadata field with id 'countryFieldId', to the images with the Public IDs of 'shirt' and 'pants':
Sample response
The following is a sample response based on the example above. Metadata values were added to the shirt and pants images.
Explicit method
The explicit
method is used to apply actions to already uploaded assets. The most common usage of this method is to eagerly generate transformations for assets that have already been uploaded, either so that they do not need to be generated on-the-fly when first accessed by users, or because Strict transformations are enabled for your account and you cannot create transformed assets on the fly. You can also use this method to pre-generate transformations for remotely fetched images.
For more information, see Updating already uploaded images.
Syntax
POST /:resource_type/explicit
Required parameters
Parameter | Type | Description |
---|---|---|
public_id | String | The identifier of the uploaded asset or the URL of the remote asset. Note: The public ID value for images and videos should not include a file extension. Include the file extension for raw files only. |
type | String | The delivery type of the asset. For a list of all possible delivery types, see Delivery types. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
resource_type | String | The type of asset. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , and video . Default: image . Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
eager | String | A list of transformations to create for the uploaded asset, instead of lazily creating them when first accessed by your site's visitors (see the Transformation URL API Reference for more details on possible values). This option accepts either a single transformation or a pipe-separated list of transformations to create for the uploaded asset.SDKs: Supports arrays. (In .NET SDK, parameter name is EagerTransforms .) |
async | Boolean | Whether to perform the request in the background (asynchronously). Default: false . |
eager_async | Boolean | Determines whether to generate the eager transformations asynchronously in the background. Default: false . |
eager_notification_url | String | An HTTP or HTTPS URL to notify your application (a webhook) when the generation of eager transformations is completed. |
overwrite | Boolean | When applying eager for already existing video transformations, this setting indicates whether to force the existing derived video resources to be regenerated. Default for videos: false . Note: When specifying existing eager transformations for images, corresponding derived images are always regenerated. |
tags | String | A comma-separated list of tag names to assign to an asset that replaces any current tags assigned to the asset (if any). For example: animal,dog SDKs: Supports arrays. For example: ['animal', 'dog'] |
invalidate | Boolean | Whether to invalidate the asset (and all its derived resources) on the CDN. Default: false . It usually takes between a few seconds and a few minutes for the invalidation to fully propagate through the CDN. There are also a number of other important considerations when using the invalidate functionality. |
context | String | A pipe-separated list of the key-value pairs of contextual metadata to attach to an uploaded asset. The contextual metadata values of uploaded files can be retrieved using the Admin API. For example: alt=My image❘caption=Profile image Notes:
['alt': 'My image', 'caption': 'Profile image'] |
metadata | String | (not supported for SDKs) A pipe-separated list of custom metadata fields (by external_id) and the values to assign to each of them. The =, " and ❘ characters can be supported as values when escaped with a prepended backslash (\ ). For example: in_stock_id=50❘color_id=[\"green\",\"red\"] . |
headers | String | An HTTP header or a list of headers lines for returning as response HTTP headers when delivering the uploaded asset to your users. Supported headers: Link , X-Robots-Tag . For example: X-Robots-Tag: noindex . |
face_coordinates | String | Sets the coordinates of faces contained in an uploaded image and overrides the automatically detected faces. Each face is specified by the X & Y coordinates of the top left corner and the width & height of the face. The coordinates for each face are given as a comma-separated list, with individual faces separated with a pipe (❘ ). For example: 10,20,150,130❘213,345,82,61 . Relevant for images only.SDKs: Supports arrays. For example: [[10, 20, 150, 130],[213, 345, 82, 61]] |
custom_coordinates | String | Sets the coordinates of a region contained in an uploaded image that is subsequently used for cropping uploaded images using the custom gravity mode. The region is specified by the X & Y coordinates of the top left corner and the width & height of the region, as a comma-separated list. For example: 85,120,220,310 . Relevant for images only.SDKs: Supports arrays. For example: [85, 120, 220, 310] |
notification_url | String | An HTTP URL to send notification to (a webhook) when the operation or any additional requested asynchronous action is completed. If not specified, the response is sent to the global Notification URL (if defined) in the Upload settings of your account console. |
image_metadata | Boolean | Whether to return IPTC, XMP, and detailed Exif metadata of the uploaded asset in the response. Default: false . Supported for images, video, and audio.
Metadata .) |
colors | Boolean | Whether to retrieve predominant colors & color histogram of the uploaded image. If one or more colors contain an alpha channel, then 8-digit RGBA hex quadruplet values are returned. Default: false . Relevant for images only. |
phash | Boolean | Whether to return the perceptual hash (pHash) on the uploaded image. The pHash acts as a fingerprint that allows checking image similarity. Default: false . Relevant for images only. |
faces | Boolean | Whether to return the coordinates of faces contained in an uploaded image (automatically detected or manually defined). Each face is specified by the X & Y coordinates of the top left corner and the width & height of the face. The coordinates for each face are returned as an array (using the SDKs) or a comma-separated list (for REST API calls), and individual faces are separated with a pipe (❘ ). For example: 10,20,150,130❘213,345,82,61 . Default: false . Relevant for images only. |
quality_analysis | Boolean | Whether to return a quality analysis value for the image between 0 and 1, where 0 means the image is blurry and out of focus and 1 means the image is sharp and in focus. Default: false . Relevant for images only.Paid customers can request to take part in the extended quality analysis Beta trial. When activated, this parameter returns quality scores for various other factors in addition to focus , such as jpeg_quality , noise , exposure , blockiness and resolution , together with an overall weighted quality_score . Note: Unlike when used with the upload method, the returned quality_score , quality_analysis.color_score and quality_analysis.pixel_score fields are not indexed for search. |
accessibility_analysis | Boolean | Currently available only to paid customers requesting to take part in the accessibility analysis Beta trial. Set to true to return accessibility analysis values for the image.Default: false . Relevant for images only. Note: Unlike when used with the upload method, the accessibility_analysis.colorblind_accessibility_score field is not indexed for search. |
quality_override | String | Sets a quality value to override the value used when the image is encoded with Cloudinary's automatic content-aware quality algorithm. |
cinemagraph_analysis | Boolean | Whether to return a cinemagraph analysis value for the media asset between 0 and 1, where 0 means the asset is not a cinemagraph and 1 means the asset is a cinemagraph. Default: false . Relevant for animated images and video only. A static image will return 0. |
moderation | String | For all asset types: Set to manual to add the asset to a queue of pending assets that can be moderated using the Admin API or the Cloudinary Management Console, or set to metascan to automatically moderate the uploaded asset using the MetaDefender Anti-malware Protection add-on. For images only: Set to webpurify or aws_rek to automatically moderate the image using the WebPurify Image Moderation add-on or the Amazon Rekognition AI Moderation add-on respectively.Note: Rejected assets are automatically invalidated on the CDN within approximately ten minutes. |
responsive_breakpoints | [JSON] | Requests that Cloudinary automatically find the best breakpoints. The parameter value is an array of breakpoint request settings, where each request setting can include the following parameters:
transformation , width , height , bytes , url and secure_url . Relevant for images only. |
eval | String | Allows you to modify upload parameters by specifying custom logic with JavaScript. This can be useful for conditionally adding tags, contextual metadata, structured metadata or eager transformations depending on specific criteria of the uploaded file. For more details see Evaluating and modifying upload parameters. |
Example
To perform two eager transformations for the already uploaded image with a Public ID of sample
as follows:
- Crop to a width and height of 400 pixels including the biggest face detected.
- Pad to a width of 660 pixels and a height of 400 pixels with a blue background.
var explicitParams = new ExplicitParams("sample"){ Type = "upload", EagerTransforms = new List<Transformation>(){ new EagerTransformation().Width(400).Height(400) .Crop("crop").Gravity("face"), new Transformation().Width(660).Height(400) .Crop("pad").Background("blue")}}; var explicitResult = cloudinary.Explicit(explicitParams);
let eager1 = CLDEagerTransformation() .setWidth(400).setHeight(400).setCrop("crop").setGravity("face") let eager2 = CLDEagerTransformation() .setWidth(660).setHeight(400).setCrop("pad").setBackround("blue") let params = CLDExplicitRequestParams().setEager([eager1, eager2]) let result = cloudinary.createManagementApi().explicit(publicId, params: params)
explicit
, the transformation is processed upon request (and counted in your transformation quota) even if an identical derived resource already exists.Sample response
The following is a sample response based on the example above. Two explicit transformations were performed on the sample
image.
{ "asset_id": "b5e6d2b39ba3e0869d67141ba7dba6cf", "public_id": "sample", "version": 1473599877, "version_id": "98f52566f43d8e516a486958a45c1eb9", "signature": "abcdefghijklmnopqrstuvwxyz12345", "width": 864, "height": 576, "format": "jpg", "resource_type": "image", "created_at": "2017-08-11T13:17:57Z", "bytes": 109669, "type": "upload", "placeholder": "false", "url": "http://res.cloudinary.com/demo/image/upload/v1473599877/sample.jpg", "secure_url": "https://res.cloudinary.com/demo/image/upload/v1473599877/sample.jpg", "access_mode": "public", "eager": [ { "transformation": "c_crop,g_face,h_400,w_400", "width": 400, "height": 400, "url": "http://res.cloudinary.com/demo/image/upload/c_crop,g_face,h_400,w_400/v1473599877/sample.jpg", "secure_url": "https://res.cloudinary.com/demo/image/upload/c_crop,g_face,h_400,w_400/v1473599877/sample.jpg" }, { "transformation": "b_blue,c_pad,h_400,w_660", "width": 660, "height": 400, "url": "http://res.cloudinary.com/demo/image/upload/b_blue,c_pad,h_400,w_660/v1473599877/sample.jpg", "secure_url": "https://res.cloudinary.com/demo/image/upload/b_blue,c_pad,h_400,w_660/v1473599877/sample.jpg" }] }
Explode method
The explode
method creates derived images for all of the individual pages in a multi-page file (PDF or animated GIF). Each derived image is stored with the same Public ID as the original file, and can be accessed using the page
parameter, in order to deliver a specific image (for more details, see the documentation on delivering content from PDF files).
You could deliver individual pages of a multi-page file on-the-fly without using the explode
method first: this method is useful for pre-generating all the pages of the file so that they do not need to be generated on-the-fly when first accessed by your users.
Syntax
POST /image/explode
Required parameters
Parameter | Type | Description |
---|---|---|
public_id | String | The identifier of the uploaded multi-page file (PDF or animated GIF). Note: The public ID for images does not include a file extension. |
transformation | String |
transformation | String | A transformation to run on all the pages before storing them as derived images. This parameter is given as a comma-separated list of transformations, and separated with a slash for chained transformations.
At minimum, you must pass thepage
transformation with the value all
. If you supply additional transformations, you must deliver the image using the same relative order of the page
and the other transformations. If you use a different order when you deliver, then it is considered a different transformation, and will be generated on-the-fly as a new derived image.SDKs: Supports a hash of transformation parameters (or an array of hashes for chained transformations). Note: When using the SDK for a dynamically-typed language, the transformation parameters can be specified directly without using this transformation
parameter, as seen in the examples for Ruby, PHP, Python, and Node.js below.
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request.Optional parameters
Parameter | Type | Description |
---|---|---|
type | String | The specific file type of the asset. Valid values: upload , private and authenticated . Default: upload . |
format | String | An optional format to convert the images before storing them in your Cloudinary account. Default: png . |
notification_url | String | An HTTP or HTTPS URL to notify your application (a webhook) when the process has completed. |
Example
To explode a PDF file with the Public ID of "sample":
Sample response
The following is a sample response indicating that the explode
command is in process.
{ "status": "processing", "batch_id": "4e485321b4a6f9692089cf40ab9aaa255b92afd8ecc17e1d415ae0a29dd31c42dc0b9139214ff488bba9ec8329482903" }
Generate_archive method
The generate_archive
method creates an archive file that contains all the assets meeting specified tag, public ID, or prefix criteria (or a combination thereof). The REST API method can be used to either return a URL to the generated archive file ('download') or to store it as a raw asset in your Cloudinary account ('create'), by setting the value of the mode
parameter.
By default, if all the assets in the archive have the identical transformation applied, they are stored in the archive with the original asset filename only, regardless of the value of the flatten_transformations
or skip_transformation_name
parameters. If assets of the same type with different transformations are included in the archive, then the relevant transformation data is appended to the filename of each asset, according to the settings of the flatten_transformations
or skip_transformation_name
parameters.
The archive can contain up to 1000 assets or 5000 derived resources. The maximum archive file size is the larger of 100 MB or your account's raw
file size limit.
For details or to request that this limitation be removed for your free account, see Media delivery.
The Cloudinary SDKs wrap the generate_archive
REST API method and offer 4 separate methods:
create_zip
: generates a ZIP file based on the given parameter values, uploads the file to your Cloudinary account, returns a JSON response with the URLs for accessing the ZIP file, and can then be delivered like any other raw file uploaded to Cloudinary.create_archive
: generates an archive file based on the given parameter values (default target_format = zip), uploads the file to your Cloudinary account, returns a JSON response with the URLs for accessing the archive file, and can then be delivered like any other raw file uploaded to Cloudinary.download_zip_url
(downloadZip
in Java): generates a signed URL that expires after 1 hour (by default). The URL can be accessed to dynamically create and then download a ZIP file based on the given parameter values. The resulting ZIP file is not cached or stored in your Cloudinary account.download_archive_url
(downloadArchive
in Java): generates a signed URL that expires after 1 hour (by default). The URL can be accessed to dynamically create and then download an archive file based on the given parameter values. The resulting archive file is not cached or stored in your Cloudinary account.
create_zip syntax
POST /:resource_type/generate_archive
create_archive syntax
POST /:resource_type/generate_archive
download_zip_url syntax
POST /:resource_type/generate_archive
download_archive_url syntax
POST /:resource_type/generate_archive
Required parameters
At least one of the 'tags', 'public_ids', or 'prefixes' parameters needs to be specified, in order to tell Cloudinary which assets to include in the archive file. Specifying any combination of the three parameters is also allowed - a unique union of all the matching assets will then be included in the archive file:
Parameter | Type | Description |
---|---|---|
tags | String | A comma-separated list of tag names. All assets with the specified tags are included in the archive. Up to 20 tags are supported. For example: animal,dog SDKs: Supports arrays. For example: ['animal', 'dog'] |
public_ids | String | A comma-separated list of public IDs for the specific assets to be included in the archive. Up to 1000 public IDs are supported. SDKs: Supports arrays. |
prefixes | String | A comma-separated list of prefixes of public IDs (e.g., folders). Setting this parameter to a slash (/ ) is a shortcut for including all assets in the account for the given resource_type and type (up to the max files limit). Up to 20 prefixes are supported.SDKs: Supports arrays. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
resource_type | String | The type of asset. Only relevant as a parameter when using the SDKs (the resource_type is included in the endpoint URL when using the REST API). Valid values: image , raw , and video . Default: image . Note: Use the video resource type for all video assets as well as for audio files, such as .mp3 . |
type | String | The specific file type of assets to include in the archive (upload /private /authenticated ). If tags are specified as a filter then all types are included. Default: upload . |
transformations | String | A transformation to run on all the derived assets before storing them in your Cloudinary account. This parameter is given as a comma-separated list of transformations, and separated with a slash for chained transformations. If this parameter is not specified then the original assets are included in the archive. If you are including multiple asset types in your archive, make sure the transformations you specify are supported for all assets that will be included in the archive.SDKs: Supports a hash of transformation parameters (or an array of hashes for chained transformations).Note: When using the SDK for a dynamically-typed language, the transformation parameters can be specified directly without using the transformation parameter. |
mode | String | (Only relevant when using the REST API - not for use with SDKs) Determines whether to return a URL to dynamically generate and download the archive file (download ) or to create and store it as a raw asset in your Cloudinary account and return a JSON with the URLs for accessing the archive file (create ). Default: create . |
target_format | String | (Only relevant when using the REST API or the 'archive' SDK methods - not for use with the 'zip' SDK methods)The format for the generated archive: zip or tgz . Default: zip . |
target_public_id | String | The name to use for the generated file:
|
flatten_folders | Boolean | Determines whether to flatten all files to be in the root of the archive file (no sub-folders). Any folder information included in the Public ID is stripped and a numeric counter is added to the file name in the case of a name conflict. Default: false . |
flatten_transformations | Boolean | If multiple transformations are also applied, determines whether to flatten the folder structure of the derived assets and store the transformation details on the file name instead. Default: false . |
skip_transformation_name | Boolean | Determines whether to strip all transformation details from file names and add a numeric counter to a file name in the case of a name conflict. Default: false . |
allow_missing | Boolean | Allows generation of the archive if any of the supplied Public IDs are not found, instead of returning an error. Default: false . |
expires_at | Integer | (Only relevant when using the 'download' SDK methods and the 'download' mode in REST API calls) The date (UNIX time in seconds) for the URL expiration (e.g., 1415060076). Default: 1 hour from the time that the URL is generated. |
use_original_filename | Boolean | Whether to use the original file name of the included assets (if available) instead of the public ID. Default: false . |
async | Boolean | (Only relevant when using the 'create' SDK methods and the 'create' mode in REST API calls) Whether to perform the archive generation in the background (asynchronously). Default: false . |
notification_url | String | (Only relevant when using the 'create' SDK methods and the 'create' mode in REST API calls) An HTTP or HTTPS URL to notify your application (a webhook) when the archive creation process has completed. If not specified for create operations, the response is sent to the global Notification URL (if defined) in the Upload settings of your account console. |
target_tags | String | (Only relevant when using the 'create' SDK methods and the 'create' mode in REST API calls) A comma-separated list of tag names to assign to the generated archive. For example: animal,dog SDKs: Supports arrays. For example: ['animal', 'dog'] |
keep_derived | Boolean | Whether to keep the derived assets used for generating the archive. Default: false. |
Examples
To create a zip file that contains all images that have the lion
tag:
To generate a URL for downloading a zip file that contains the images with the following public_ids: dog
, cat
and lion
:
Sample response
The following is a sample response based on the create_zip
example above. 6 image assets with the tag 'lion' were added to the zip file. Because no target_public_id
was specified in the upload, a random public_id
was assigned to the zip file.
{ "asset_id": "08e80d01729e8e238d605f6bc7aa1b92", "public_id": "oe5bz4vbtdg0ijr323on.zip", "version": 1570980108, "version_id": "9a048093cdbb048d0829bdb46c378e43", "signature": "abcdefghijklmnopqrstuvwxyz12345", "resource_type": "raw", "created_at": "2017-08-12T14:03:31Z", "tags": [], "bytes": 1153022, "type": "upload", "etag": "00e3a782aa2c390dc605d0548d067177", "placeholder": false, "url": "http://res.cloudinary.com/demo/raw/upload/v1570980108/oe5bz4vbtdg0ijr323on.zip", "secure_url": "https://res.cloudinary.com/demo/raw/upload/v1570980108/oe5bz4vbtdg0ijr323on.zip", "access_mode": "public", "resource_count": 6, "file_count": 6 }
Sprite method
Cloudinary supports generating sprites by merging multiple images into a single large image for reducing network overhead and bypassing download limitations. The browser downloads only a single image and a CSS file that directs the browser to which part of the sprite to use for displaying each contained image. The sprite
method creates a sprite from all images that have been assigned a specified tag. The process produces 2 files as follows:
- A single image file containing all the images with the specified tag (PNG by default).
- A CSS file that includes the style class names and the location of the individual images in the sprite.
For a detailed explanation on generating and using sprites, see the documentation on sprite generation.
Syntax
POST /image/sprite
Required parameters
Parameter | Type | Description |
---|---|---|
tag | String | The sprite is created from all images with this tag. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
transformation | String | A transformation to run on all the derived assets before creating the sprite. This parameter is given as a comma-separated list of transformations, and separated with a slash for chained transformations. SDKs: Supports a hash of transformation parameters (or an array of hashes for chained transformations).Note: When using the SDK for a dynamically-typed language, the transformation parameters can be specified directly without using the transformation parameter. |
format | String | An optional format to convert the sprite before saving it in your Cloudinary account. Default: png . |
async | Boolean | Tells Cloudinary whether to perform the sprite generation in the background (asynchronously). Default: false . |
notification_url | String | An HTTP or HTTPS URL to notify your application (a webhook) when the process has completed. If not specified, the response is sent to the global Notification URL (if defined) in the Upload settings of your account console. |
Example
Generating a sprite from all images tagged with logo
, creates a single PNG image file with the Public ID of logo
that contains all the tagged images, and a CSS file with the Public ID of logo.css
.
Sample response
The following is a sample response based on the example above. 3 images with the tag logo
were added to the logo
png and css files to create the sprite.
{ "css_url": "http://res.cloudinary.com/demo/image/sprite/v1473689611/logo.css", "secure_css_url": "https://res.cloudinary.com/demo/image/sprite/v1473689611/logo.css", "image_url": "http://res.cloudinary.com/demo/image/sprite/v1473689611/logo.png", "secure_image_url": "https://res.cloudinary.com/demo/image/sprite/v1473689611/logo.png", "json_url": "http://res.cloudinary.com/demo/image/sprite/v1473689611/logo.json", "secure_json_url": "https://res.cloudinary.com/demo/image/sprite/v1473689611/logo.json", "version": 1473689611, "public_id": "logo", "image_infos": { "logo_slogan": { "width": 300, "height": 165, "x": 0, "y": 0 }, "https://res.cloudinary.com/demo/image/upload/v1549540112/logo2.png": { "width": 32, "height": 32, "x": 0, "y": 167 }, "https://cloudinary.com/images/logo.png": { "width": 165, "height": 165, "x": 0, "y": 201 } } }
Multi method
The multi
method creates either a single animated image (GIF, PNG or WebP), video (MP4 or WebM) or a single PDF from all image assets that have been assigned a specified tag. Each asset is included as a single frame of the resulting animated image/video, or a page of the PDF (sorted alphabetically by their Public ID).
For a detailed explanation on generating animated images, see Creating animated images.
For further information about generating a PDF from a selection of images, see Creating PDF files from images.
For details or to request that this limitation be removed for your free account, see Media delivery.
Syntax
POST /image/multi
Required parameters
Parameter | Type | Description |
---|---|---|
tag | String | The animated GIF or PDF is created from all images with this tag. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
transformation | String | A transformation to run on all the derived assets before creating the animated image or PDF. This parameter is given as a comma-separated list of transformations, and separated with a slash for chained transformations. SDKs: Supports a hash of transformation parameters (or an array of hashes for chained transformations).Note: When using the SDK for a dynamically-typed language, the transformation parameters can be specified directly without using the transformation parameter. |
async | Boolean | Tells Cloudinary whether to perform the animated image or PDF generation in the background (asynchronously). Default: false . |
format | String | The file format of the result. Valid values: gif , png , webp , mp4 , webm and pdf . Default: gif |
delay | Integer | The delay in milleseconds between frames. Valid for animated images and video formats. |
notification_url | String | An HTTP or HTTPS URL to notify your application (a webhook) when the process has completed. If not specified, the response is sent to the global Notification URL (if defined) in the Upload settings of your account console. |
Examples
Generating an animated GIF from all images tagged with logo
:
Sample response
The following is a sample response based on the example above. An animated logo.gif
image was created from all the images with the tag logo
.
{ "url": "http://res.cloudinary.com/demo/image/multi/v1473690796/logo.gif", "secure_url": "https://res.cloudinary.com/demo/image/multi/v1473690796/logo.gif", "asset_id": "00a215ac20890831fe59daeeb2f108ec", "public_id": "logo", "version": 1473690796 }
Generating an animated webp from all images tagged with logo
:
Sample response
The following is a sample response based on the example above. An animated logo.webp
image was created from all the images with the tag logo
.
{ "url": "http://res.cloudinary.com/demo/image/multi/v1473690796/logo.webp", "secure_url": "https://res.cloudinary.com/demo/image/multi/v1473690796/logo.webp", "public_id": "logo", "version": 1473690796 }
Text method
You can use Cloudinary to dynamically generate an image from a given textual string with the text
method. You can then use this textual image as any other image, for example, as an overlay for other images. Various font, color and style parameters can be specified to customize the look & feel of the text before converting it to an image.
Syntax
POST /image/text
Required parameters
Parameter | Type | Description |
---|---|---|
text | String | The text string to generate an image for. |
signature | String | (Required for REST API calls) Used to authenticate the request and based on the parameters you use in the request. When using the Cloudinary SDKs, the signature is automatically generated and added to the request. If you manually generate your own POST request, you also need to manually generate this signature and add it to the request. |
Optional parameters
Parameter | Type | Description |
---|---|---|
public_id | String | The identifier that is used for accessing the generated image. If not specified, a unique identifier is generated by Cloudinary. Note: The public ID value for images and videos should not include a file extension. Include the file extension for raw files only. |
font_family | String | The name of the font family. |
font_size | Integer | Font size in points. Default: 12 . |
font_color | String | Name or RGB representation of the font's color. For example: red or #ff0000 . Default: black . |
font_weight | String | Whether to use a normal or a bold font. Default: normal . |
font_style | String | Whether to use a normal or an italic font. Default: normal . |
background | String | Name or RGB representation of the background color of the generated image. For example: red or #ff0000 . Default: transparent . |
opacity | Integer | Text opacity value between 0 (invisible) and 100. Default: 100 . |
text_decoration | String | Set to underline to define a line below the text. Default: none . |
Example
To create an image of the text string "Sample text string" in 42 point, red, Roboto bold font, and the Public ID of "sample_text_image":
Sample response
The following is a sample response based on the example above. A text image is created with the public_id sample_text_image
based on the transformations requested in the text
method.
{ "asset_id": "f658a81a606a6b2edb164cc2f0983620", "public_id": "sample_text_image", "version": 1473692896, "version_id": "9b5cfabc0972be386ecb2f15aeeff920", "signature": ""abcdefghijklmnopqrstuvwxyz12345"", "width": 342, "height": 41, "format": "png", "resource_type": "image", "created_at": "2017-08-12T15:08:16Z", "tags": [], "bytes": 3670, "type": "text", "placeholder": false, "url": "http://res.cloudinary.com/demo/image/text/v1473692896/sample_text_image.png", "secure_url": "https://res.cloudinary.com/demo/image/text/v1473692896/sample_text_image.png", "access_mode": "public" }