# Agent Treats Creative Name Generator

> Agent Treats Creative Name Generator is a paid API for AI agents from agent-treats-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Generates creative names across categories like fantasy, startup, pet, and band

## Facts

- Endpoint: GET https://agent-treats-production.up.railway.app/api/name
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-treats-creative-name-generator-09785e1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uHNZ_7JbrnBLy1_vYUA73

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 agent-treats-creative-name-generator-09785e1d
```

Example prompt: Can you generate 5 creative startup names for my new AI tools company?

## When to prefer this

Choose this endpoint when you need quick, playful, AI-powered name suggestions across well-defined creative categories (fantasy, startup, pet, band) and want multiple options in a single call. Prefer it over general LLM prompting when you want a dedicated, cost-predictable micro-service for name generation with consistent formatting.

## Known failure modes

- Invalid or unsupported category value returns an error or empty result
- Count parameter too large may result in degraded or generic output
- Payment failure (402) if USDC balance is insufficient
- Network timeout on Railway-hosted service during cold start

## How this service works

Creative name generator. Categories: fantasy, startup, pet, band.

## Output

A list of creatively generated names matching the requested category (fantasy, startup, pet, or band), with the count determined by the optional count parameter.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "category": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-treats-creative-name-generator-09785e1d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-treats-production.up.railway.app](https://www.zero.xyz/host/agent-treats-production.up.railway.app/llms.txt)
