# GlianaAI Auto OG — Automated Open Graph Image Generation

> GlianaAI Auto OG — Automated Open Graph Image Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Generates an Open Graph (social preview) image automatically for a given URL or content, paid per-call in USDC via x402 protocol.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/auto-og
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-auto-og-automated-open-graph-image-generation-3caa6116
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VeOguyYWb_Yg0WEBd_C35

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-auto-og-automated-open-graph-image-generation-3caa6116
```

Example prompt: Can you auto-generate an Open Graph social preview image for my page using GlianaAI — I'll pay per call in USDC — just send a GET request with my content as the input body in JSON format.

## When to prefer this

Choose this endpoint when you need automated Open Graph / social preview image generation with per-call crypto micropayment billing (USDC), no API key or signup required, settling via x402 protocol on Base, Tempo, or Solana.

## Known failure modes

- Missing required 'input' object returns validation error
- Invalid method (not GET) returns 405
- Insufficient USDC balance or failed x402 payment returns 402 Payment Required
- Invalid bodyType enum value returns schema validation error
- Network timeout if image generation takes too long

## How this service works

GlianaAI - pay-per-call AI models, live market data and identity APIs (90+ models incl. LLM chat), no signup, USDC. This resource: tools/auto-og. Read a web page and render a social card from what it says. Use when an agent has only a URL and wants a preview image without choosing the wording. Input: url (required). Returns sourceTitle, url and contentType. Two browser passes — one to read the page, one to render — which is why it costs more than og-image. https://ai.glianalabs.com

## Output

Returns a JSON response containing the tool name and presumably the generated Open Graph image or a reference to it, confirming the auto-OG generation task was completed.

## 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/auto-og"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-auto-og-automated-open-graph-image-generation-3caa6116/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)
