Catalog/gen-slug-codename

Generators

Seeded codename slug API

Produces a human-readable adjective-color-noun codename slug (optionally numbered) from a seed. The value-add: memorable, stable names for branches/releases/rooms that regenerate from the same seed. Answers 'Give me a friendly codename from this seed', 'How do I make a Heroku-style random name deterministically?'.

Price$0.01per request
MethodPOST
Route/v1/generate/slug-codename
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
slugcodenamenamedeterministicseedfriendlyidgenerate
API URLhttps://x402.hexl.dev/v1/generate/slug-codename
Integration docs
Example request
{
  "seed": "abc"
}
Example response
{
  "slug": "witty-pink-otter-89",
  "parts": [
    "witty",
    "pink",
    "otter"
  ],
  "suffix": 89,
  "seed": "abc",
  "deterministic": true,
  "interpretation": "Human-readable codename slug from seed; ideal for branch/release/room names."
}
Input schema
{
  "type": "object",
  "required": [
    "seed"
  ],
  "properties": {
    "seed": {
      "type": [
        "string",
        "number"
      ],
      "examples": [
        "abc"
      ]
    },
    "words": {
      "type": "integer",
      "enum": [
        2,
        3
      ],
      "examples": [
        3
      ]
    },
    "suffix": {
      "type": "boolean",
      "examples": [
        true
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}