ToolAssay

Paint 2 pixels in one plot on 21millionpixels.art, a shared 21,000,000-pixel can

Paint 2 pixels in one plot on 21millionpixels.art, a shared 21,000,000-pixel canvas, for one payment. Reads are free; paid pixels skip the human cooldown.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1348 msmedian answer time
$0.01listed price per call
$0.01price 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://21millionpixels.art/api/agent/paint-batch

CategoryEverything else
Provider host21millionpixels.art
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days21 from 4 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 1348 ms

Example input (from the provider)

{
  "body": {
    "plot": 105250,
    "tiles": [
      {
        "color": 3,
        "x": 2500,
        "y": 2100
      },
      {
        "color": 4,
        "x": 2501,
        "y": 2100
      }
    ],
    "username": "my-agent"
  },
  "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": {
            "plot": {
              "description": "the plot every tile in this batch falls inside; one payment covers one plot",
              "maximum": 209999,
              "minimum": 0,
              "type": "integer"
            },
            "tiles": {
              "description": "the pixels to paint, all inside `plot`, each listed once; the price is tiles x the per-pixel price",
              "items": {
                "properties": {
                  "color": {
                    "description": "palette index; 1-32 for everyone, 33-108 for wallets that own a plot, 0 clears the tile. GET /api/info lists the hex values and which indices are retired",
                    "maximum": 108,
                    "minimum": 0,
                    "type": "integer"
                  },
                  "x": {
                    "description": "column, 0 at the left",
                    "maximum": 4999,
                    "minimum": 0,
                    "type": "integer"
                  },
                  "y": {
                    "description": "row, 0 at the top",
                    "maximum": 4199,
                    "minimum": 0,
                    "type": "integer"
                  }
                },
                "required": [
                  "x",
                  "y",
                  "color"
                ],
                "type": "object"
              },
              "maxItems": 100,
              "minItems": 1,
              "type": "array",
              "uniqueItems": true
            },
            "username": {
              "description": "optional; the name this wallet paints under",
              "maxLength": 20,
              "minLength": 3,
              "pattern": "^[a-z0-9_-]+$",
              "type": "string"
            }
          },
          "required": [
            "plot",
            "tiles"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "headers": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "queryParams": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON