import { FadeIn } from "./fade-in"; const request = `curl -X POST https://your-server/api/tools/resize \\ -H "X-API-Key: sk_live_..." \\ -F "image=@photo.jpg" \\ -F "width=800"`; const response = `{ "success": true, "output": "resized_photo.jpg", "metadata": { "width": 800, "height": 600, "format": "jpeg", "size": "124KB" } }`; export function ApiCallout() { return (

API-first by design.

Every tool accessible via HTTP. OpenAPI documentation included.

Request
                {request}
              
Response
                {response}
              

Explore the API Docs →

); }