Remove the background from an image and return a transparent PNG, paid per reque
Remove the background from an image and return a transparent PNG, paid per request in USDC on Base via x402, no API key. Send `image` (base64) or `image_url` (HTTPS), not both. Optional `model` is used for pricing then stripped before proxy.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.02listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://x402.aispace.bot/api/v1/image/background-remove
| Category | Image and media |
|---|---|
| Provider host | x402.aispace.bot |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 6 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"image": "https://example.com/product.png",
"return_binary": false
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"anyOf": [
{
"required": [
"image"
]
},
{
"required": [
"image_url"
]
}
],
"properties": {
"image": {
"description": "Source image as base64. Send image XOR image_url.",
"type": "string"
},
"image_url": {
"description": "HTTPS URL of the source image. Send image XOR image_url.",
"type": "string"
},
"return_binary": {
"description": "Gateway-owned. Omit for a raw image file (default). false = JSON { id, images: [base64], format } like generate. true = force the file. Stripped before Venice.",
"type": "boolean"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"contentType": {
"type": "string"
},
"note": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}