Cloud Storage & File Sharing — entry 010 of 18

Imgbb

Verified Jul 2026

ImgBB is a free image-hosting service with a simple REST API that accepts a base64 or multipart image upload and returns a hosted URL plus metadata. A live POST against the real gateway, api.imgbb.com/1/upload, returned a 400 without a valid key, reconfirming API-key auth over HTTPS, and a follow-up OPTIONS preflight returned Access-Control-Allow-Origin: *, resolving cors from unknown to yes. The API key itself is free with unlimited bandwidth and a 32MB per-image cap, while a paid Pro plan raises the size limit to 64MB and removes ads.

image-hostingimage-sharingapi-key
AuthenticationAPI KeySign up with the provider to obtain credentials.
HTTPSSupportedTraffic is encrypted in transit.
CORSEnabledCallable directly from browser JavaScript.
PricingFreemiumA usable free tier exists, with paid plans for more volume.
FormatsJSONResponses can be requested as JSON.

GreatAPIs Score

Score61out of 100
Authentication15/25API key required
Pricing17/20Freemium tier available
Docs0/20No docs or spec available
Formats9/15Single response format
Freshness20/20Verified within 6 months

Embed this badge

Scored 61 on greatapis.com
<a href="https://greatapis.com/api/imgbb/"><img src="https://greatapis.com/badge/imgbb.svg" alt="Scored 61 on greatapis.com"></a>

Auth quickstart

  1. Sign up with the provider to get an API key.
  2. Send it on every request as a headerAuthorization: <key>
  3. The exact header isn't documented — Authorization is a common default; confirm in the provider's docs.
Stored keyNo key stored

Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.