Convert merchant SKUs to barcodes
Convert merchant SKUs to barcodes. Provide the SKUs and the merchant they belong to, and each SKU maps to its barcode or to null when no match exists.
Answers HTTP 503 without x402 payment termsour last check, 2026-09-24
0 of 1checks 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://zeroclick.affiliate.com/v1/tools/convert/sku-to-barcode
| Category | Commerce and shopping |
|---|---|
| Provider host | zeroclick.affiliate.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 7 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 | 503 | 432 ms |
Example input (from the provider)
{
"body": {
"config": {
"merchant": {
"name": "walmart"
}
},
"data": [
"12987717129",
"9853123116",
"9885868036"
]
},
"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": {
"properties": {
"config": {
"description": "Identifies the source merchant. Provide merchant.name or merchant.url.",
"example": {
"merchant": {
"name": "walmart"
}
},
"properties": {
"merchant": {
"properties": {
"name": {
"description": "Merchant name. Takes precedence over url.",
"example": "walmart",
"type": "string"
},
"url": {
"description": "Merchant domain, used when name is omitted.",
"example": "walmart.com",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"merchant"
],
"type": "object"
},
"data": {
"description": "The merchant SKUs to convert.",
"example": [
"12987717129",
"9853123116",
"9885868036"
],
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"data",
"config"
],
"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"
}
},
"required": [
"input"
],
"type": "object"
}