Estimate fair art and illustration commission prices from project type, scope, licensing,
Estimate fair art and illustration commission prices from project type, scope, licensing, revisions, rush timing, and expenses.
25000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-31
updated
Provider
theartillerist.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf69586f5E0e5B3b105A1937364D8B299877c9735",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "25000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"commission_type": "book-cover-illustration",
"complexity": "complex",
"expenses_usd": 0,
"experience": "established",
"finish": "rendered",
"revisions": 2,
"rush": "none",
"subjects": 2,
"usage": "commercial_small"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"commission_type": {
"quote_key": "book-cover-illustration"
},
"currency": "USD",
"dataset": {
"version": "2026.1"
},
"estimate": {
"high": 3750,
"low": 1250,
"recommended": 2200
},
"quote_id": "cq_example"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://theartillerist.com/api/v1/commission-quotes" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://theartillerist.com/api/v1/commission-quotes");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://theartillerist.com/api/v1/commission-quotes")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7414.json, and this resource appears in /discovery/resources and /discovery/search.