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>"
}
'import requests
url = "https://brew.new/api/v1/content/transform"
payload = {
"operation": "optimize",
"imageUrl": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({operation: 'optimize', imageUrl: '<string>'})
};
fetch('https://brew.new/api/v1/content/transform', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://brew.new/api/v1/content/transform",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'operation' => 'optimize',
'imageUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://brew.new/api/v1/content/transform"
payload := strings.NewReader("{\n \"operation\": \"optimize\",\n \"imageUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://brew.new/api/v1/content/transform")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"operation\": \"optimize\",\n \"imageUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://brew.new/api/v1/content/transform")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"operation\": \"optimize\",\n \"imageUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"url": "<string>",
"width": 1,
"height": 1,
"aspectRatio": "<string>",
"bytes": 1,
"fallbackUsed": true
}Transform an image
Deterministic image transform routed by the operation discriminator: optimize rehosts a palette PNG (resize ≤1200px), resize produces exact dimensions via the vision-guided fal pipeline (Sharp cover-crop fallback), remove_background returns a transparent PNG cutout (Bria RMBG 2.0). Returns the CDN-hosted url + dimensions. Credit-metered (fixed cost: optimize 1, resize 2, remove_background 1).
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>"
}
'import requests
url = "https://brew.new/api/v1/content/transform"
payload = {
"operation": "optimize",
"imageUrl": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({operation: 'optimize', imageUrl: '<string>'})
};
fetch('https://brew.new/api/v1/content/transform', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://brew.new/api/v1/content/transform",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'operation' => 'optimize',
'imageUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://brew.new/api/v1/content/transform"
payload := strings.NewReader("{\n \"operation\": \"optimize\",\n \"imageUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://brew.new/api/v1/content/transform")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"operation\": \"optimize\",\n \"imageUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://brew.new/api/v1/content/transform")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"operation\": \"optimize\",\n \"imageUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"url": "<string>",
"width": 1,
"height": 1,
"aspectRatio": "<string>",
"bytes": 1,
"fallbackUsed": true
}Authorizations
Send your Brew API key as Authorization: Bearer brew_xxx.
Headers
Optional idempotency key for safe retries. Reusing the same key with the same request body returns the original response for 24 hours.
1 - 100The brand this request acts on. REQUIRED for organization-scoped credentials (otherwise 400 BRAND_ID_REQUIRED — there is no default brand); list ids with GET /v1/brands. Brand-scoped credentials may omit it, and sending a different brand returns 403 BRAND_SCOPE_MISMATCH. A brand outside your organization returns 404 BRAND_NOT_FOUND.
1 - 64Body
An operation discriminator: { operation:"optimize", imageUrl }, { operation:"resize", imageUrl, width, height, … }, or { operation:"remove_background", imageUrl }.
Was this page helpful?