# Relaystation Identicon Generator

> Relaystation Identicon Generator is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Generates a deterministic GitHub-style identicon PNG from any seed string, producing a stable avatar for users or agents

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/generate/identicon
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-identicon-generator-f253056a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Q4dZQ3P3W9P-P7azPlb1

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 relaystation-identicon-generator-f253056a -d '<json body>'
```

Example prompt: Generate a GitHub-style identicon avatar PNG for the user 'alice@example.com' — I need a stable, deterministic avatar I can use every time she logs in.

## When to prefer this

Choose this endpoint when you need a stable, reproducible avatar that requires no user-uploaded photo — especially for new accounts, anonymous users, or AI agents that need a consistent visual identity. Prefer it over random avatar generators when determinism across sessions is required, and over storing user images when you want zero storage overhead.

## Known failure modes

- Missing or empty seed string returns an error
- Invalid content-type or malformed request body
- Payment not provided or insufficient x402 credit causes payment-required error
- Network timeout on image rendering for unusual seeds

## How this service works

$0.0002/call. Deterministic GitHub-style identicon PNG from any seed string — stable avatars for users or agents. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

A PNG image file containing a deterministic, GitHub-style identicon uniquely derived from the provided seed string. The same seed always produces the same image, making it suitable as a stable avatar.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-identicon-generator-f253056a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
