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.

GEThttps://convertgo.in/api/status

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

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

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

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