action remove_post_improve { label: "post_improve" description: "Submit an image to the remove.bg Improvement program\n* Contribute an image that remove.bg is currently not able to remove the background from properly\n* Help us make remove.bg better\n* Get better results for similiar images in the future\n\nNotes:\n * By submitting images through the API you agree to the Improvement Program Conditions\n * File size: up to 12MB\n * up to 100 files per day.
Higher Rate Limits are available for Enterprise customers upon request.\n\nRequires either an API Key to be provided in the `X-API-Key` request header or an OAuth 2.0 access token to be provided in the `Authorization` request header.\n\nPlease note that submissions are used on a best-effort basis and the extent of expected improvement varies depending on many factors, including the number of provided images, their complexity and visual similarity. Improvements usually take several weeks to become effective.\n" provider: remove method: POST path: "/improve" encoding: form input: { type: "object" properties: { image_file_b64: { type: "string" description: "Source image file (base64-encoded string). (If this parameter is present, the other image source parameters must be empty.)" } image_filename: { type: "string" description: "Filename of the image, if not provided it will be autodetected form the submitted data." } image_url: { type: "string" description: "Source image URL. (If this parameter is present, the other image source parameters must be empty.)" } tag: { type: "string" description: "Images with the same tag are grouped together." } } } output: { type: "object" additionalProperties: true } }