# GlianaAI Meme Generator

> GlianaAI Meme Generator is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Generates meme content using AI via a pay-per-call endpoint on the GlianaAI platform, settled in USDC with no API key required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/meme
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-meme-generator-a222493f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6o4XarDI1GfzhWm6Pqi95

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-meme-generator-a222493f
```

Example prompt: Can you generate a funny meme for me using GlianaAI — I'll pay the $0.02 USDC per call fee via my crypto wallet, no API key needed.

## When to prefer this

Choose this endpoint when you need to generate memes on demand without a subscription or API key, want to pay per request in USDC using the x402 protocol, and are operating in an agentic or crypto-native environment on Base, Tempo, or Solana. Prefer this over traditional meme APIs when your agent can handle micropayment flows automatically.

## Known failure modes

- Payment not received or insufficient USDC balance — request rejected with 402 Payment Required
- Invalid or missing 'input' body fields — returns validation error
- Model or meme generation service unavailable — server-side error response
- Unsupported bodyType or HTTP method — schema validation failure
- Network timeout during AI inference — no result returned

## How this service works

GlianaAI - pay-per-call AI + utility APIs (80+ models incl. LLM chat), no signup, USDC. This resource: tools/meme. https://ai.glianalabs.com

## Output

Returns a JSON object confirming the tool invoked (tools/meme) along with the generated meme content or a reference to it, following the x402 payment-settled response format.

## 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": {
  "tool": "tools/meme"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-meme-generator-a222493f/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)
