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 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 ...'
β