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.Endpoint and authentication
Base URL:
All requests require your APIXO API key:
Copy-paste async quickstart
This minimal request submits one image cleanup task and returns ataskId.
taskId; you need it to poll for the final result.
Poll for result
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.Billing
Image Watermark Remover is billed per submitted image task. Becauseimage_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.