Character Name Generator API Endpoint: /character/name Description: Generates a fantasy-style character name. You can optionally provide a custom pattern via the 'pattern' query parameter. Pattern Symbols: _ → Random consonant (e.g., B, D, G) - → Random vowel (e.g., A, E, I) * → Random letter (either consonant or vowel) Examples: 1. Randomly generated name (default pattern): GET /character/name 2. Custom pattern with fixed letters: GET /character/name?pattern=Br_-d* Example output: "Braidu" — where: B and r are fixed _ becomes random consonant - becomes random vowel d is fixed * becomes random letter 3. Custom pattern with only random letters: GET /character/name?pattern=_-_*_- Example output: "Daebim" Notes: - If no pattern is supplied, the generator will choose from a list of defaults. - Output is returned in JSON format: { "name": "GeneratedName" } Enjoy!