Background Remover API
The Background Remover feature allows clients to to remove backgrounds from images using advanced AI technology, preparing the images for creative enhancements. This feature is accessible through RESTful API endpoints, supporting operations such as initiating an background removing process, monitoring progress, and downloading the background removed images.
Endpoints Overview
1. Start BackgroundRemoving Process
Description: Initiates the background removing process for a given image.
Details:
URL:
POST /api/v1/Image/BackgroundRemoving/AdCreative
Full Path:
https://api.adcreative.ai/api/v1/Image/BackgroundRemoving/AdCreative
Authorization: Requires a Bearer Token and the following headers:
Authorization
Bearer token for authentication
Bearer YOUR_BEARER_TOKEN
x-api-key
API Key for the application
a1c3b5d7e9f6a8c4d2e9b3f7c5a9
x-api-secret
Secret Key for the application
f5c6a7b8e9d4f1a3c7b6e8f3a9d5
Content-Type
Specifies the data format
multipart/form-data
Accept
Expected response format
application/json
Request Body (form-data):
applicationId
GUID
Yes
Unique identifier for the application initiating the request.
userId
GUID
Yes
Unique identifier for the user for whom the background removing is performed.
uploadedImage
File
Yes
Image file to be remove background (e.g., .jpg
or .png
).
Example Request
cURL Command:
Example Responses
Successful Response
HTTP Status Code: 200 OK
Response Body:
Validation Error Response
HTTP Status Code: 400 Bad Request
Response Body:
Authorization Error Response
HTTP Status Code: 401 Unauthorized
Response Body:
Notes on Errors
400 Bad Request: Missing required fields or invalid image format.
401 Unauthorized: Missing or invalid token, or incorrect API credentials.
Ensure all required fields are provided and valid.
2. Check User Progress
Description: Retrieves the progress of the background removing process for a specific user.
Details:
URL:
GET /api/v1/Image/BackgroundRemoving/CheckUserProgress
Full Path:
https://api.adcreative.ai/api/v1/Image/BackgroundRemoving/CheckUserProgress
Authorization: Requires a Bearer Token and the following headers:
Headers
Authorization
Bearer <YOUR_TOKEN>
Required for authentication.
x-api-key
<YOUR_API_KEY>
API Key for accessing the endpoint.
x-api-secret
<YOUR_API_SECRET>
API Secret for accessing the endpoint.
Accept
application/json
Specifies the response format.
Query Parameters
userId
Guid
Yes
The unique identifier for the user.
imageBackgroundRemoverProcessId
Guid
No
(Optional) The ID of the specific background removing process.
Example Request
cURL Command:
Example Responses
Successful Response
HTTP Status Code:
200 OK
Response Body:
Validation Error Response
HTTP Status Code:
400 Bad Request
Response Body:
Authorization Error Response
HTTP Status Code:
401 Unauthorized
Response Body:
Notes on Errors
400 Bad Request: Occurs when required parameters (
userId
) are missing or invalid.401 Unauthorized: Happens when the token is missing, invalid, or API credentials are incorrect.
Ensure all required headers and query parameters are provided correctly.
3. Check Application All Progresses
Description: Checks the progress of all image background removing processes for a specific application.
Details:
Method:
GET
URL:
/api/v1/Image/BackgroundRemoving/CheckApplicationAllProgresses
Full Path:
https://api.adcreative.ai/api/v1/Image/BackgroundRemoving/CheckApplicationAllProgresses
Authorization
Required: Bearer Token
Headers:
Accept: application/json
Authorization: Bearer <YOUR_BEARER_TOKEN>
x-api-key: <YOUR_API_KEY>
x-api-secret: <YOUR_API_SECRET>
Query Parameters
applicationId
Guid
Yes
The unique identifier of the application.
Example Request
cURL Command
Responses
Successful Response
HTTP Status Code:
200 OK
Response Body:
Validation Error Response
HTTP Status Code:
400 Bad Request
Response Body:
Authorization Error Response
HTTP Status Code:
401 Unauthorized
Response Body:
Not Found Error Response
HTTP Status Code:
404 Not Found
Response Body:
Error Notes
400 Bad Request: Occurs if
applicationId
is missing or invalid.401 Unauthorized: Bearer token is missing, invalid, or API credentials are incorrect.
404 Not Found: No progress data is found for the provided
applicationId
.
4. Download Background Removed Image
Description:
Retrieves the background removed image content stream based on the provided query parameters.
Details:
Method:
GET
URL:
/api/v1/Image/BackgroundRemoving/Download
Full Path:
https://api.adcreative.ai/api/v1/Image/BackgroundRemoving/Download
Authorization:
Requires a Bearer Token.
The following headers must be included:
Authorization
Bearer token for authentication
Bearer <YOUR_BEARER_TOKEN>
x-api-key
API key for client identification
<YOUR_API_KEY>
x-api-secret
API secret for secure access
<YOUR_API_SECRET>
Accept
Expected response format
application/json
Query Parameters:
applicationId
Guid
Yes
ID of the application making the request
4f7d8a9c-b5e6-4d3e-b7a9-d5c3e1b7a4f6
taskId
Guid
Yes
Unique identifier for the specific task
e6c59f37-a794-234f-56yu-c9ef79dc042c
imageBackgroundRemover
ProcessId
Guid
Yes
ID of the image background removing process
e6c59f37-a794-468d-81aa-c9ef79dc042c
lowResolution
bool
No
Indicates whether the image is in low resolution
false
Example Request:
cURL Command:
Example Responses:
Successful Response:
HTTP Status Code:
200 OK
Response Type:
FileStream
Details: The requested image file stream will be directly downloaded.
Authorization Error Response
HTTP Status Code:
401 Unauthorized
Response Body:
Validation Error Response:
HTTP Status Code:
400 Bad Request
Response Body:
Not Found Error Response:
HTTP Status Code:
404 Not Found
Response Body:
Error Notes:
400 Bad Request:
Occurs when the
taskId
or other parameters are invalid.Ensure all query parameters are properly formatted.
404 Not Found:
No image content is found for the provided identifiers.
Verify that
applicationId
,taskId
, andimageBackgroundRemoverProcessId
are correct.
401 Unauthorized:
Bearer token is missing or invalid.
Ensure proper API key and secret are used in the headers.
Validation Notes
Required Fields: All required fields must be provided in the request.
File Formats: Uploaded files must meet the required formats (e.g.,
jpeg
).Notification Channel: If notifications are enabled, ensure a valid notification channel is configured.
Last updated