How can I check the resource type and delivery type of an asset?
Last updated: Feb-24-2026
When uploading assets programmatically, you may need to verify that the resource type and delivery type were set correctly. For example, if you uploaded a font file as raw/authenticated, you'll want to confirm these settings were applied. There are two easy ways to check the resource type and delivery type of your uploaded assets.
Check resource type and delivery type from the delivery URL
The simplest way to verify resource type and delivery type is by examining the asset's delivery URL structure.
To check using the delivery URL:
- Copy the asset's delivery URL. You can get this from:
- The upload API response (the
urlorsecure_urlfield) - The Media Library (available on hover in both the Card view and List view)
- The Admin API resource details response
- The upload API response (the
- Examine the URL structure.
The URL structure follows this format:
Example:
In this example:
-
Resource type:
raw(the third path segment) -
Delivery type:
authenticated(the fourth path segment)
Common resource types:
-
image- Images (JPG, PNG, GIF, etc.) -
video- Videos and audio files (MP4, MOV, MP3, etc.) -
raw- Raw files delivered as-is (fonts, documents, etc.)
Common delivery types:
-
upload- The asset is publicly available. This is the default type when uploading files. -
private- Original assets are only accessible by a signed URL. -
authenticated- Original assets and all their asset derivations are only accessible through signed URLs.
View resource type and delivery type in the Console
You can also verify these settings visually in the Cloudinary Console. The List view provides detailed information about all your assets in a table format, and you can customize which columns are displayed.
To view resource type and delivery type in the Console:
- Navigate to the Media Library in your Cloudinary Console.
- Switch to List view using the View drop-down menu at the top right of the page.
- Click the
(Settings) icon. - In the Column Settings dialog, select the following columns:
-
Asset type - Shows the resource type (
image,video, orraw) -
Delivery type - Shows the delivery type (
upload,private, orauthenticated)
-
Asset type - Shows the resource type (
The selected columns now display for every asset in your list, making it easy to see the resource type and delivery type at a glance.
Related topics
- Learn how to Upload assets programmatically.
- Learn more about Asset types and Delivery types parameters.
- Learn about Controlling access to media assets.
- Learn how to use the Admin API to get asset details.
