🚀 Edge Cache

Global Content Delivery Network | Fast & Reliable

✅ Service Status: Operational
📍 Edge Location: Global CDN
⚡ Cache Status: Active

📡 API Usage

# GET request (browsing)
curl "https://edge-cache.vercel.app/api/cache?url=https://example.com"

# POST request (API calls)
curl -X POST "https://edge-cache.vercel.app/api/cache?url=https://api.example.com/data" \
  -H "Content-Type: application/json" \
  -d '{"key": "value"}'

# Use in browser
https://edge-cache.vercel.app/api/cache?url=https://www.google.com

🔧 Developer Tools Integration

// JavaScript fetch example
fetch('https://edge-cache.vercel.app/api/cache?url=https://api.github.com/users/vercel')
  .then(res => res.json())
  .then(data => console.log(data));

// Python requests example
import requests
response = requests.get('https://edge-cache.vercel.app/api/cache?url=https://httpbin.org/ip')
print(response.json())