# Transparent Logo Generator

> Transparent Logo Generator is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.02/call, status healthy (last checked 2026-09-15, last successful call 2026-09-12).

Generates a 1024x1024 RGBA PNG logo mark with a transparent background in flat vector style from a text description

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/amnt/logo-generator-gpt15
- Price: $0.02/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-09-12
- Success rate: 50% of calls made through Zero
- Rating: 4.7 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transparent-logo-generator-ba851acc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rTYN-G1lsrHEywxWcAbg3

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 transparent-logo-generator-ba851acc -d '<json body>'
```

Example prompt: Can you generate a transparent background logo for my DeFi protocol called 'NovaDex' — make it a flat vector style flame mark in deep blue and electric purple, no text, suitable for use as a token logo?

## When to prefer this

Choose this endpoint when you specifically need a transparent-background logo mark, token icon, app icon, or sticker asset rendered as a flat vector-style 1024x1024 RGBA PNG — and you want to drop it directly onto any background without post-processing to remove a white box. It is ideal for crypto tokens, DeFi protocol branding, app icons, and Discord/community stickers. It is not suited for photorealistic images, logos with text, or non-square formats.

## Known failure modes

- Vague or empty prompt may produce an unexpected or generic mark
- Prompt requesting text in the logo will be ignored or produce unintended results
- Network or payment failure may return an error with no image URL
- Rate limits or server-side errors may return a 5xx response with no result
- Very complex scene descriptions may produce simplified or misinterpreted output

## How this service works

Transparent Logo from Text - Call when you need a logo mark on a transparent background - a token logo, an app icon, a sticker, or a mark to drop straight onto a page without a white box behind it. Send a short description. Returns a 1024x1024 RGBA PNG with a genuinely transparent background, flat vector style, no text.

## Output

Returns a URL pointing to a 1024x1024 RGBA PNG image of the generated logo. The image has a genuinely transparent background, is rendered in flat vector style, and contains no text — ready to be placed directly on any colored background, webpage, or design canvas.

## 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": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "URL of the generated image"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transparent-logo-generator-ba851acc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
