Task-runner
Task-runner: resize an image (?url=, ?width=, ?height=, max 2000px each) and return it as a data URL. Priced at $0.02/output-megapixel (min $0.005) — sells compute, metered by resource use, not a flat fee.
Answers HTTP 500 without x402 payment termsour last check, 2026-09-24
0 of 1checks answered this week
n/amedian answer time
$0.005listed 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
GET https://lab.paidapis.net/api/resize-image
| Category | Image and media |
|---|---|
| Provider host | lab.paidapis.net |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | no x402 terms | 500 | 636 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"height": 0,
"url": "",
"width": 0
},
"type": "http"
}
Promised output schema (from the provider)
{
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {
"height": {
"description": "Output height in px, up to 2000.",
"type": "integer"
},
"url": {
"description": "Public http(s) URL of the source image.",
"type": "string"
},
"width": {
"description": "Output width in px, up to 2000.",
"type": "integer"
}
},
"required": [
"url",
"width",
"height"
],
"type": "object"
}
}
},
"output": {
"properties": {
"example": {
"properties": {
"format": {
"type": "string"
},
"height": {
"type": "integer"
},
"imageDataUrl": {
"type": "string"
},
"resizedAt": {
"type": "string"
},
"sizeBytes": {
"type": "integer"
},
"width": {
"type": "integer"
}
},
"type": "object"
}
}
}
}
}