Skip to main content

What is Ordinary CDN?

Ordinary CDN is a globally distributed content delivery network designed for developers who need fast, reliable asset delivery without the complexity.

Fast

Global edge network with automatic optimization

Simple

Upload with a single API call, no configuration needed

Affordable

Pay only for what you use, no hidden fees

Key Features

🌍 Global Edge Network

Assets are automatically replicated across our global CDN network, ensuring low-latency delivery to users worldwide.

🔄 Automatic Optimization

Images and videos are automatically optimized for web delivery:
  • WebP/AVIF conversion for modern browsers
  • Responsive image sizing
  • Lazy loading support
  • Video transcoding

🔒 Built-in Security

Every asset is served over HTTPS with optional access controls:
  • Private assets with signed URLs
  • CORS configuration
  • Rate limiting
  • DDoS protection

📊 Real-time Analytics

Track asset performance with built-in analytics:
  • Request count and bandwidth
  • Geographic distribution
  • Cache hit rates
  • Error monitoring

API Endpoints

Use Cases

Static Assets

Perfect for serving images, videos, stylesheets, and scripts for your web applications.
<!-- Optimized image delivery -->
<img
  src="https://cdn.ordinary.sh/abc123/logo.png?w=300&format=webp"
  alt="Logo"
/>

Quick Start

1

Get Your API Key

Generate an API key from your account dashboard.
2

Upload Your First File

Use our upload endpoint to store a file:
curl -X POST https://api.ordinary.sh/v1/cdn/upload \
  -H "Authorization: Bearer $API_KEY" \
  -F "[email protected]"
3

Deliver Your Asset

Use the returned URL to serve your asset globally:
https://cdn.ordinary.sh/xyz123/image.png

Pricing

CDN pricing is based on bandwidth and storage:

Bandwidth

$0.10/GB after 10GB free monthly

Storage

$0.02/GB/month after 1GB free
Free tier includes 10GB bandwidth and 1GB storage per month, perfect for development and small projects.

Next Steps