{
  "x402Version": 2,
  "id": 4491,
  "slug": "4491",
  "resource": "https://visuals.use.x402atlas.com/identicon",
  "description": "Identicon generator — turn an exact UTF-8 seed into a deterministic mirrored avatar returned as base64-encoded SVG or PNG in JSON.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "category": "media-processing",
      "info": {
        "input": {
          "body": {
            "background": "#ffffff",
            "format": "svg",
            "seed": "wallet:example-1234",
            "size": 128
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "content_base64": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgMTI4IDEyOCIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPHJlY3Qgd2lkdGg9IjEyOCIgaGVpZ2h0PSIxMjgiIGZpbGw9IiNmZmZmZmYiLz4KPHBhdGggZmlsbD0iIzkwMjM0MiIgZD0iTTE5IDE5aDE4djE4aC0xOHpNNTUgMTloMTh2MThoLTE4ek05MSAxOWgxOHYxOGgtMTh6TTM3IDM3aDU0djE4aC01NHpNMzcgNTVoNTR2MThoLTU0ek01NSA3M2gxOHYxOGgtMTh6TTE5IDkxaDE4djE4aC0xOHpNNTUgOTFoMTh2MThoLTE4ek05MSA5MWgxOHYxOGgtMTh6Ii8+Cjwvc3ZnPgo=",
            "format": "svg",
            "height": 128,
            "kind": "identicon",
            "media_type": "image/svg+xml",
            "render_version": "mirror-grid-v1",
            "sha256": "e2f996520ac504a0b206b194d86269acdb87cbae5652ee1a9a90236d0d281e55",
            "width": 128
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "description": "Deterministic privacy-conscious identicon generation request.",
                "properties": {
                  "background": {
                    "default": "#ffffff",
                    "description": "Opaque #RRGGBB canvas color; rejected unless a derived palette color reaches 4.5:1 contrast.",
                    "pattern": "^#[0-9a-fA-F]{6}$",
                    "type": "string"
                  },
                  "format": {
                    "default": "svg",
                    "description": "Artifact format encoded into content_base64.",
                    "enum": [
                      "svg",
                      "png"
                    ],
                    "type": "string"
                  },
                  "seed": {
                    "description": "Exact non-empty UTF-8 seed, at most 1024 encoded bytes; never echoed in the response.",
                    "minLength": 1,
                    "type": "string"
                  },
                  "size": {
                    "default": 512,
                    "description": "Exact width and height of the square output canvas in pixels.",
                    "maximum": 2048,
                    "minimum": 64,
                    "type": "integer"
                  }
                },
                "required": [
                  "seed"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "additionalProperties": false,
                "properties": {
                  "content_base64": {
                    "description": "Standard padded base64 of the exact SVG or PNG artifact bytes.",
                    "maxLength": 2796204,
                    "type": "string"
                  },
                  "format": {
                    "description": "Decoded artifact format; determines media_type.",
                    "enum": [
                      "svg",
                      "png"
                    ],
                    "type": "string"
                  },
                  "height": {
                    "description": "Decoded artifact height in pixels.",
                    "maximum": 2048,
                    "minimum": 64,
                    "type": "integer"
                  },
                  "kind": {
                    "const": "identicon",
                    "description": "Generated artifact kind.",
                    "type": "string"
                  },
                  "media_type": {
                    "description": "Media type of the decoded content_base64 bytes.",
                    "enum": [
                      "image/svg+xml",
                      "image/png"
                    ],
                    "type": "string"
                  },
                  "render_version": {
                    "description": "Versioned normalization and rendering contract used to produce the artifact.",
                    "enum": [
                      "mirror-grid-v1"
                    ],
                    "type": "string"
                  },
                  "sha256": {
                    "description": "Lowercase SHA-256 digest of the decoded artifact bytes, not of the base64 text.",
                    "pattern": "^[0-9a-f]{64}$",
                    "type": "string"
                  },
                  "width": {
                    "description": "Decoded artifact width in pixels.",
                    "maximum": 2048,
                    "minimum": 64,
                    "type": "integer"
                  }
                },
                "required": [
                  "kind",
                  "render_version",
                  "format",
                  "media_type",
                  "width",
                  "height",
                  "sha256",
                  "content_base64"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      },
      "tags": [
        "identicon",
        "avatar-generator",
        "deterministic-avatar",
        "avatar",
        "wallet-avatar",
        "seed-to-image",
        "svg",
        "png",
        "profile-image",
        "hash-avatar"
      ]
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "visuals.use.x402atlas.com",
  "lastUpdated": "2026-09-15T06:32:19.664Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-15T06:32:19.53Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "visuals.use.x402atlas.com",
    "manifest_name": "visuals.use.x402atlas.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}