# Art Commission Quote API

> Art Commission Quote API is a paid API for AI agents from theartillerist.com, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-15).

Estimates fair pricing for art and illustration commissions based on project type, scope, licensing, revisions, rush timing, and expenses.

## Facts

- Endpoint: POST https://theartillerist.com/api/v1/commission-quotes
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/art-commission-quote-api-ddee8837
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t1Ha1fCxw0nqUsrtYA8y2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability art-commission-quote-api-ddee8837 -d '<json body>'
```

Example prompt: Can you get me a fair price estimate for a digital character illustration commission — full body, commercial licensing, 2 revisions, standard turnaround, with roughly $20 in software expenses?

## When to prefer this

Choose this endpoint when you need a data-driven, structured price estimate for art or illustration commissions — especially when factoring in commercial licensing, revision counts, rush fees, or expense reimbursement. Prefer this over generic freelance rate calculators when the user is specifically in the visual art or illustration domain and needs a defensible, itemized quote.

## Known failure modes

- Missing required body fields returns a validation error
- Unrecognized project type or licensing enum value may cause a 400 error
- Extremely unusual scope combinations may produce low-confidence estimates
- Network timeout if the computation service is overloaded

## How this service works

Estimate fair art and illustration commission prices from project type, scope, licensing, revisions, rush timing, and expenses.

## Output

Returns an estimated price or price range for the art commission, factoring in project type, scope complexity, licensing tier, number of included revisions, rush timing surcharges, and any additional expenses. May include a breakdown of how each factor contributes to the final quote.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/art-commission-quote-api-ddee8837/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from theartillerist.com](https://www.zero.xyz/host/theartillerist.com/llms.txt)
