Skip to main content
POST
/
image_editing
/
removebg_mask
Background removal and create mask
curl --request POST \
  --url https://modelslab.com/api/v6/image_editing/removebg_mask \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "<string>",
  "image": "<string>",
  "alpha_matting": false,
  "post_process_mask": false,
  "only_mask": false,
  "inverse_mask": false,
  "seed": 123,
  "base64": false,
  "alpha_matting_foreground_threshold": 240,
  "alpha_matting_background_threshold": 20,
  "alpha_matting_erode_size": 5,
  "webhook": "<string>",
  "track_id": 123
}'
{
  "status": "success",
  "generationTime": 123,
  "id": 123,
  "output": [
    "<string>"
  ],
  "proxy_links": [
    "<string>"
  ],
  "meta": {}
}

Remove Background Mask

removebg-createmask endpoint result

Request

Make a POST request to below endpoint and pass the required parameters as a request body to the endpoint.
curl
--request POST 'https://modelslab.com/api/v6/image_editing/removebg_mask' \
If you want only mask as a output then set the parameter only_mask:true

Body

json
{    
    "key":"",    
    "seed":12345,    
    "image":"https://assets.modelslab.com/generations/31d4567d-b60a-4d09-9650-987fc0aae2cf",    
    "post_process_mask": false,    
    "only_mask": false,    
    "alpha_matting":false,    
    "webhook": null,    
    "track_id": null  
}

Body

application/json
key
string
required
image
string
required
alpha_matting
boolean
default:false
post_process_mask
boolean
default:false
only_mask
boolean
default:false
inverse_mask
boolean
default:false
seed
integer
base64
boolean
default:false
alpha_matting_foreground_threshold
integer
default:240
Required range: 0 <= x <= 240
alpha_matting_background_threshold
integer
default:20
Required range: 0 <= x <= 20
alpha_matting_erode_size
integer
default:5
Required range: 0 <= x <= 5
webhook
string<uri>
track_id
integer

Response

200 - application/json
  • Option 1
  • Option 2
  • Option 3
status
enum<string>
Available options:
success
generationTime
number
id
integer
output
string<uri>[]
meta
object