Skip to main content
POST
/
images
/
uploads
/
file
/
signed
/
{token}
Upload an image (signed)
curl --request POST \
  --url https://www.trybloom.ai/api/v1/images/uploads/file/signed/{token} \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form 'file=<string>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "imageUrl": "<string>",
    "width": 123,
    "height": 123,
    "mimeType": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://www.trybloom.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Path Parameters

token
string<uuid>
required

Short-lived upload token from bloom_create_image_upload_url

Body

multipart/form-data
file
required

Image file (PNG, JPEG, WebP, or AVIF, max 10MB). AVIF is converted to PNG server-side.

Response

OK

data
object
required