Skip to main content

Overview

Image Watermark Remover removes visible text or logo watermarks from one input image and returns a cleaned image URL. Use this page when you are ready to call the API after trying the model in the APIXO playground.
This model is fixed to a single-image image-to-image workflow. It does not accept prompts, masks, seeds, resolution controls, or multiple reference images.

Endpoint and authentication

Base URL:
All requests require your APIXO API key:
Submit requests also require:

Copy-paste async quickstart

This minimal request submits one image cleanup task and returns a taskId.
Successful response:
Save the taskId; you need it to poll for the final result.

Poll for result

Processing response:
Success response:
Failed response:
Parse resultJson after state becomes success:

Request body

Default JPG output

PNG output

Explicit mode

mode is optional because this endpoint has only one workflow. If you include it, it must be image-to-image.

Parameters

string
default:"async"
required
Result delivery mode. Use async for polling with statusTask, or callback for webhook delivery.
string
Required when request_type is callback. Must be a public HTTPS URL that can receive the final task payload. See Webhooks.
object
required
Image Watermark Remover input parameters.

Response format

Submit task response

POST /generateTask/image-watermark-remover returns a task ID when the task is accepted:
integer
API status code. 200 means the task was accepted.
string
Human-readable status message.
string
Unique task identifier used with the status endpoint.

Status response fields

string
Unique task identifier.
string
Current task state: pending, processing, success, or failed.
string
JSON string containing the cleaned image URLs. Present when state is success.
string
Machine-readable failure code. Present when state is failed.
string
Human-readable failure message. Present when state is failed.
integer
Task creation timestamp in Unix milliseconds.
integer
Task completion timestamp in Unix milliseconds. Present after completion when available.
integer
Processing duration in milliseconds when available.

resultJson payload

resultJson is a JSON-encoded string. After parsing it, the payload has this shape:

Webhook callback mode

Use callback mode when your backend should receive the final result automatically instead of polling.
The final callback payload uses the same task response shape as status polling:
See Webhooks for delivery requirements and retry behavior.

Billing

Image Watermark Remover is billed per submitted image task. Because image_urls must contain exactly one image, each accepted task counts as one image for billing. For the current public price, see Pricing.

Latency and polling

This endpoint is asynchronous. Actual latency can vary by image complexity, upstream queue load, and result storage time.

Errors and troubleshooting

HTTP errors

Validation errors

Task failure codes

See Error Codes for the full error reference.