Catalog/gen-name

Generators

Seeded name generator API

Generates a reproducible person, company, product, or username name from a seed, returning the assembled name and its components. The value-add: stable, structured fake names for fixtures (distinct from random faker output). Answers 'Give me a deterministic company name from this seed', 'Generate a reproducible username.'.

Price$0.01per request
MethodPOST
Route/v1/generate/name
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
namecompanyproductusernamedeterministicseedgeneratorgenerate
API URLhttps://x402.hexl.dev/v1/generate/name
Integration docs
Example request
{
  "kind": "company",
  "seed": "abc"
}
Example response
{
  "name": "Cipher Analytics",
  "kind": "company",
  "components": {
    "prefix": "Cipher",
    "suffix": "Analytics"
  },
  "seed": "abc",
  "deterministic": true,
  "interpretation": "Reproducible company name; same seed always yields \"Cipher Analytics\"."
}
Input schema
{
  "type": "object",
  "required": [
    "kind",
    "seed"
  ],
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "person",
        "company",
        "product",
        "username"
      ],
      "examples": [
        "company"
      ]
    },
    "seed": {
      "type": [
        "string",
        "number"
      ],
      "examples": [
        "abc"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}