# GlianaAI Brainrot Character Text-to-Image

> GlianaAI Brainrot Character Text-to-Image is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Generates a 'brainrot character' style image from a text prompt using GlianaAI's pay-per-call inference platform, billed at $0.20 USDC per call via x402 protocol

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/brainrot-character
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-brainrot-character-text-to-image-036b9105
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8ZLFj0Le5wl_NHuA6eLbz

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 glianaai-brainrot-character-text-to-image-036b9105
```

Example prompt: Generate a brainrot-style character image of a chaotic frog wearing sunglasses and riding a skateboard through a neon city — use GlianaAI's brainrot-character model and pay the $0.20 USDC fee.

## When to prefer this

Choose this endpoint when you specifically want a 'brainrot character' aesthetic — the chaotic, internet-culture, meme-style character art associated with that trend — rather than generic photorealistic or artistic image generation. Ideal for agents that need novelty internet-culture imagery with no API key signup, paying per call in USDC via x402.

## Known failure modes

- Payment failure: insufficient USDC balance or x402 payment not accepted — returns 402 Payment Required
- Invalid or missing input prompt — returns 400 Bad Request
- Model unavailable or inference timeout — returns 503 or 504
- Rate limit exceeded — returns 429 Too Many Requests
- Malformed request body type — returns 400 with schema validation error

## How this service works

GlianaAI — brainrot-character (text-to-image)

## Output

Returns a generated image (URL or binary) depicting a 'brainrot character' rendered from the input text prompt, produced by GlianaAI's specialized model for this internet-culture aesthetic.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "brainrot-character",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-brainrot-character-text-to-image-036b9105/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.glianalabs.com](https://www.zero.xyz/host/api.glianalabs.com/llms.txt)
