Brandname Maker

Product naming API for agents and developers.

What is Brandname Maker?

Brandname Maker is an x402-paid API that generates product names designed to land with real customers — not just satisfy the founder.

Each API call returns a structured naming analysis with candidate names, taglines, and reasoning. Payment settles only after a successful response.

Use it directly via curl or POST requests, or integrate it into AI agents that need naming capabilities.

API Endpoint

POSThttps://brandnamemaker.com/v1/name
Price: $0.25 USD per successful naming run
Network: eip155:8453 (Base mainnet USDC)

Request JSON

{
  "brief": "what the product is, who it's for, any banned words / rejected pile",
  "product": "optional one-sentence product",
  "customer": "optional customer-as-a-person",
  "rejected": "optional rejected names and why"
}

Example (curl)

curl -X POST https://brandnamemaker.com/v1/name \
  -H "Content-Type: application/json" \
  -d '{
    "brief": "A tool that helps developers spot bugs before they ship",
    "product": "Static analysis for JavaScript",
    "customer": "Full-stack developer, 28, shipping features weekly",
    "rejected": "BugFinder - too obvious"
  }'

# x402 clients handle HTTP 402 + PAYMENT-REQUIRED / PAYMENT-SIGNATURE headers
# Price: $0.25 USD per successful response
# Network: eip155:8453 (Base mainnet USDC)

Note: x402 clients automatically handle HTTP 402 responses with PAYMENT-REQUIRED and PAYMENT-SIGNATURE headers. Payment settles only after a successful response (HTTP < 400).