← APIs / Cloudinary Admin API
Verified

Cloudinary Admin API

Apiosk Basicsby Apiosk Basics · General

Read Cloudinary product environment usage and media asset metadata.

mediaapi
Price per request
$0.05
About

Cloudinary is a cloud media platform for asset management, optimization, transformations and delivery. This listing exposes read-only Admin API routes for usage and image resources with Basic authentication injected by Apiosk.

Base URL
https://gateway.apiosk.com/cloudinary
Technical Specs
Auth Methodbasic
Response FormatJSON
Endpoints2
Endpoints
MethodPathDescriptionCost
GET /resources/image List image resources in the Cloudinary product environment. Supports pagination with max_results and next_cursor.
$0.05 default
View details
GET /usage Get Cloudinary product environment usage details: credits, bandwidth, storage, transformations and requests.
$0.05 default
View details
Endpoint documentation
GET/resources/image
$0.05 default
Description

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/..."
    }
  ]
}
GET/usage
$0.05 default
Description

Get Cloudinary product environment usage details: credits, bandwidth, storage, transformations and requests.

Pricing
$0.05 default
Parameters
{
  "date": {
    "description": "Optional YYYY-MM usage month.",
    "required": false,
    "type": "string"
  }
}
Response schema
{
  "properties": {
    "bandwidth": {
      "type": "object"
    },
    "credits": {
      "type": "object"
    },
    "plan": {
      "type": "string"
    },
    "requests": {
      "type": "number"
    },
    "storage": {
      "type": "object"
    }
  },
  "type": "object"
}
Example response
{
  "bandwidth": {
    "usage": 0
  },
  "credits": {
    "usage": 0
  },
  "plan": "Free",
  "requests": 0,
  "storage": {
    "usage": 0
  }
}