Skip to main content

Managed token header (Authorization)

EndpointAuth
/api/v1/background/remove/base64Authorization: <managed_token>
/api/v1/background/remove/urlAuthorization: <managed_token>
/api/v1/background/remove/multipartAuthorization: <managed_token>

Request and response schemas

Request schema (application/json)
{
  "type": "object",
  "required": ["image_url"],
  "properties": {
    "image_url": {
      "type": "string",
      "format": "uri"
    }
  }
}
Response schema (200 application/json)
{
  "type": "object",
  "required": ["image_base64"],
  "properties": {
    "image_base64": {
      "type": "string",
      "description": "Image encoded as Base64 string"
    }
  }
}