The Remove Background API allows developers to automatically isolate subjects from their backgrounds. This service identifies the primary subject of an image and removes the surrounding environment to create a transparent or clean output.
1curl -X POST 'https://api.chatseystudio.com/api/async/remove_background' \ 2 -H 'Content-Type: application/json' \ 3 -H 'Authorization: Bearer {{key}}' \ 4 -d '{ 5 "url": "https://storage.chatseystudio.com/api/uploads/image.jpg" 6 }'
1{ 2 "code": 0, 3 "message": "success", 4 "data": { 5 "taskId": "b0a337dc8d7428daa64b3d5e61b835d" 6 } 7}