Identicon generator — turn an exact UTF-8 seed into a deterministic mirrored avatar return
Identicon generator — turn an exact UTF-8 seed into a deterministic mirrored avatar returned as base64-encoded SVG or PNG in JSON.
5000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
updated
Provider
visuals.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 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
}
]Output schema
{
"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"
]
}
}Use it
curl
curl "https://visuals.use.x402atlas.com/identicon" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://visuals.use.x402atlas.com/identicon");
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://visuals.use.x402atlas.com/identicon")
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/4491.json, and this resource appears in /discovery/resources and /discovery/search.