API Playground
Explore the FFmpeg Micro API interactively. Try different endpoints, modify requests, and see example responses. This is a sandbox environment with mock data - no authentication required.
Endpoints
Select an endpoint to try
POST
/v1/upload/presigned-urlGet Presigned Upload URL
Request a presigned URL to upload your video file
Request Headers
Replace
YOUR_API_KEY with the key from your dashboard.Authorization: Bearer YOUR_API_KEY Content-Type: application/json
Example Request Body
Reference-only — the example response below is static and does not reflect edits to this body. Use the cURL example below with your own API key for real requests.
cURL Example
Copy this command to try the real API (requires authentication)
curl -X POST https://api.ffmpeg-micro.com/v1/upload/presigned-url \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"filename": "demo-video.mp4",
"contentType": "video/mp4",
"fileSize": 5242880
}'Ready to make real API calls?
This page is reference-only — it shows endpoint shapes, example responses, and ready-to-copy cURL commands. To make actual API calls, sign up for a free account (100 minutes included, no credit card required) and use the cURL examples above with your own API key.