Instant & Effortless Image APIs

No sign-ups or keys. Simple, powerful tools to convert, resize, crop, compress, and remove backgrounds—ready to use immediately.

Developer Integration Guide

Welcome to the ConvertGo API environment. Our mission is to provide developers with a robust, friction-free alternative to traditional image processing microservices. Whether you're building a content management system, an ecommerce platform, or a custom creative application, our APIs allow you to offload the heavy lifting of image manipulation to our optimized infrastructure.

No Authentication Required

We've eliminated the need for complex API keys, OAuth flows, or account management for our standard endpoints. Start building your integration instantly without waiting for approvals or managing sensitive secrets.

Scalable & Reliable

Backed by ultra-fast, distributed nodes, our API endpoints are designed to handle variable traffic loads with sub-second response times for standard image operations, ensuring your users never experience bottlenecks.

All endpoints follow standard RESTful principles and accept multipart/form-data for file uploads. Below, you'll find detailed specifications for each available service, complete with production-ready cURL examples and schema definitions for successful responses. If you're using our API for commercial applications, we recommend checking the /status endpoint to monitor service health.

GEThttps://convertgo.in/api/status

Health Status Interface

Monitor service availability with sub-second uptime responses—restful, ephemeral, and zero-auth for developer integration.

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"
}
POSThttps://convertgo.in/api/remove-background

AI Background Isolation

Leverage decentralized neural network inference to isolate subjects and create high-fidelity, transparent PNG cutouts for e-commerce.

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"'
POSThttps://convertgo.in/api/resize-image

Resize 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"'
POSThttps://convertgo.in/api/crop-image

Crop 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"'
POSThttps://convertgo.in/api/apply-grayscale

Apply 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"'
POSThttps://convertgo.in/api/compress-image

SEO Performance Compression

Slash image weights by up to 80% to optimize Core Web Vitals and LCP while maintaining studio-quality visual integrity.

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"'
POSThttps://convertgo.in/api/rotate-image

Rotate 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"'
POSThttps://convertgo.in/api/add-text-overlay

Add 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"'
POSThttps://convertgo.in/api/convert-image

Dynamic Format Encoder

Convert between AVIF, WEBP, and legacy formats to satisfy modern CDN requirements and maximize cross-browser site speed.

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"'