Cloudimage website screenshot

Cloudimage

Cloudimage (by Scaleflex) is an image and video optimization, resizing, and CDN service. Its core interface is a URL-based transformation API - you request an origin image through https://{token}.cloudimg.io/{origin-url} and apply resize, crop, format, compression, filter, and watermark operations via query parameters, delivered over a global multi-CDN. A companion Filerobot DAM provides a REST upload and asset-management API.

4 APIs 0 Features
Image OptimizationImage CDNResizingTransformationDAM

APIs

Cloudimage Image Transformation (URL API)

URL-based, on-the-fly image transformation. Requests carry the origin image as a path on the {token}.cloudimg.io host and apply operations through query parameters - resize (w, ...

Cloudimage Optimization & CDN API

Automatic format conversion (WebP, AVIF) via force_format/format, lossy and lossless compression via quality (q), color and effect filters (blur, sharpen, contrast, greyscale, p...

Cloudimage Video Transformation (URL API)

On-the-fly video processing and transcoding for short web clips (up to 500 MB, 4K, 60s) using the same URL model - resize (w, h, func), background fill, format selection (auto, ...

Filerobot DAM Upload & Asset API

REST upload and digital-asset-management API for the Filerobot DAM (the Scaleflex storage that backs Cloudimage). Authenticated with X-Filerobot-Key, it supports multipart and s...

Collections

Pricing Plans

Cloudimage Plans Pricing

4 plans

PLANS

Rate Limits

Cloudimage Rate Limits

6 limits

RATE LIMITS

FinOps

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Cloudimage API
  version: '7'
items:
- info:
    name: Image
    type: folder
  items:
  - info:
      name: Transform and deliver an image
      type: http
    http:
      method: GET
      url: https://{{token}}.cloudimg.io/https://samples.scaleflex.com/flat.jpg?w=400&h=300&func=crop&q=80&force_format=auto
    docs: Requests the origin image (carried as the request path) and applies resize, crop, compression, and format operations
      via query parameters, delivered via CDN.
- info:
    name: Video
    type: folder
  items:
  - info:
      name: Transform and deliver a video
      type: http
    http:
      method: GET
      url: https://{{token}}.cloudimg.io/https://samples.scaleflex.com/sample.mp4?w=640&h=360&func=fit&format=auto&bitrate=2m
    docs: On-the-fly video processing/transcoding using the same URL model (max 500 MB, 4K, first 60s).
- info:
    name: Filerobot DAM
    type: folder
  items:
  - info:
      name: Upload a file to the DAM
      type: http
    http:
      method: POST
      url: https://api.filerobot.com/{{token}}/v4/upload?folder=/folder_test
      headers:
      - name: X-Filerobot-Key
        value: '{{filerobotKey}}'
      body:
        type: multipart-form
        data: []
    docs: Uploads one or more files into the Filerobot DAM via multipart/form-data.
  - info:
      name: Stream-upload a file
      type: http
    http:
      method: PUT
      url: https://api.filerobot.com/{{token}}/v4/files
      headers:
      - name: X-Filerobot-Key
        value: '{{filerobotKey}}'
      - name: Content-Type
        value: application/octet-stream
      body:
        type: binary
        data: ''
    docs: Streams the request body into storage; useful for files larger than 500 MB.
  - info:
      name: List and search files
      type: http
    http:
      method: GET
      url: https://api.filerobot.com/{{token}}/v4/files
      headers:
      - name: X-Filerobot-Key
        value: '{{filerobotKey}}'
    docs: Lists or searches files stored in the DAM.
  - info:
      name: Get file details
      type: http
    http:
      method: GET
      url: https://api.filerobot.com/{{token}}/v4/files/{{uuid}}
      headers:
      - name: X-Filerobot-Key
        value: '{{filerobotKey}}'
    docs: Returns metadata for a single file.
  - info:
      name: Delete a file
      type: http
    http:
      method: DELETE
      url: https://api.filerobot.com/{{token}}/v4/files/{{uuid}}
      headers:
      - name: X-Filerobot-Key
        value: '{{filerobotKey}}'
    docs: Deletes a file from the DAM.
  - info:
      name: List and search folders
      type: http
    http:
      method: GET
      url: https://api.filerobot.com/{{token}}/v4/folders
      headers:
      - name: X-Filerobot-Key
        value: '{{filerobotKey}}'
    docs: Lists or searches folders in the DAM.
  - info:
      name: Create a folder
      type: http
    http:
      method: POST
      url: https://api.filerobot.com/{{token}}/v4/folders
      headers:
      - name: X-Filerobot-Key
        value: '{{filerobotKey}}'
      - name: Content-Type
        value: application/json
      body:
        type: json
        data: "{\n  \"name\": \"new-folder\",\n  \"parent\": \"/\"\n}"
    docs: Creates a folder in the DAM.