Skip to main content
POST
/
v1
/
content
/
transform
Transform an image
curl --request POST \
  --url https://brew.new/api/v1/content/transform \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "operation": "optimize",
  "imageUrl": "<string>"
}
'
{
  "url": "<string>",
  "width": 1,
  "height": 1,
  "aspectRatio": "<string>",
  "bytes": 1,
  "fallbackUsed": true
}

Authorizations

Authorization
string
header
default:Bearer brew_your_api_key
required

Send your Brew API key as Authorization: Bearer brew_xxx.

Headers

Idempotency-Key
string

Optional idempotency key for safe retries. Reusing the same key with the same request body returns the original response for 24 hours.

Required string length: 1 - 100

Body

application/json

An operation discriminator: { operation:"optimize", imageUrl } or { operation:"resize", imageUrl, width, height, … }.

operation
enum<string>
required
Available options:
optimize
imageUrl
string<uri>
required

Response

The operation result.

url
string<uri>
required
width
integer
required
Required range: x >= 0
height
integer
required
Required range: x >= 0
aspectRatio
string
bytes
integer
Required range: x >= 0
fallbackUsed
boolean