Instant & Effortless Image APIs
No sign-ups or keys. Simple, powerful tools to convert, resize, crop, compress, and remove backgrounds—ready to use immediately.
Overview
No API keys, sign-ups, or usage limits. Get instant, unrestricted access to all tools for seamless image processing. Below, you’ll find cURL examples to help you integrate quickly.
https://convertgo.in/api/statusAPI Status
Verify service health with uptime, version, and server time — no auth.
Headers
- Accept: application/json
- No authentication required
Request
No body
cURL
curl --location "https://convertgo.in/api/status"
Response
{
"message": "ConvertGo server is up and running",
"server_status": "running",
"status": "success"
}https://convertgo.in/api/remove-backgroundRemove Background
Remove backgrounds to return clean, transparent PNGs — ideal for product photos.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file"
cURL
curl --location "https://convertgo.in/api/remove-background" --form 'image=@"/path/to/file"'
https://convertgo.in/api/resize-imageResize Image
Resize to exact width/height for responsive layouts and performance.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file" width="500" height="300"
cURL
curl --location "https://convertgo.in/api/resize-image" --form 'image=@"/path/to/file"' --form 'width="500"' --form 'height="300"'
https://convertgo.in/api/crop-imageCrop Image
Crop by x/y/width/height to isolate the subject with pixel precision.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file" x="50" y="50" width="200" height="150"
cURL
curl --location "https://convertgo.in/api/crop-image" --form 'image=@"/path/to/file"' --form 'x="50"' --form 'y="50"' --form 'width="200"' --form 'height="150"'
https://convertgo.in/api/apply-grayscaleApply Grayscale
Convert to grayscale for consistent look, reduced size, and quick previews.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file"
cURL
curl --location "https://convertgo.in/api/apply-grayscale" --form 'image=@"/path/to/file"'
https://convertgo.in/api/compress-imageCompress Image
Compress by target quality to cut size while preserving visual clarity.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file" quality="60"
cURL
curl --location "https://convertgo.in/api/compress-image" --form 'image=@"/path/to/file"' --form 'quality="60"'
https://convertgo.in/api/rotate-imageRotate Image
Rotate by any angle to fix orientation or create stylized layouts.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file" angle="90"
cURL
curl --location "https://convertgo.in/api/rotate-image" --form 'image=@"/path/to/file"' --form 'angle="90"'
https://convertgo.in/api/add-text-overlayAdd Text Overlay
Add text at coordinates for watermarks, labels, or captions with control.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file" text="Sample Watermark" position="10,10"
cURL
curl --location "https://convertgo.in/api/add-text-overlay" --form 'image=@"/path/to/file"' --form 'text="Sample Watermark"' --form 'position="10,10"'
https://convertgo.in/api/convert-imageConvert Image
Convert between PNG/JPG/WEBP to match delivery and CDN requirements.
Headers
- Content-Type: multipart/form-data
- No authentication required
Form Data
image=@"/path/to/file" format="PNG"
cURL
curl --location "https://convertgo.in/api/convert-image" --form 'image=@"/path/to/file"' --form 'format="PNG"'