Skip to main content
Set API Key & Secret

Set API authorization using Key & Secret from Cloudinary

Updated over a month ago

To use the Cloudinary 3D API, you need to authorize your requests with a key/secret set obtained from the Cloudinary Console - API Keys page.

Once you have the key and secret pair you can call the Cloudinary 3D API.

The API endpoints are available Here.

Swagger website includes all of the available methods.

The APIs use Basic Auth meaning the Key is considered the username, and the secret is considered the password.

For example. Retrieving the 3D Models from an account will look like this:

Notice that all API endpoints expect the cloudName query parameter to exist and should match the cloud the API key was generated for.

The same request using cURL will look like this:

curl --location 'https://api.dimensions.cloudinary.com/3DModel?cloudName=my-cloud' \
--header 'Authorization: Basic ...'


​

Did this answer your question?