Word Scramble

Word Scramble Endpoint

The Word Scramble endpoint allows you to take a given word and scramble its letters, changing their order randomly. This endpoint is perfect for applications such as word games, educational tools, or any scenario where you want to challenge users to decipher or guess the original word.

Endpoint

  • URL: https://api.erensko.xyz/v1/scramble

  • Method: GET

  • Description: This endpoint scrambles a word and changes the positions of each character.

URL Parameters

Key
Value

word

The plain word to scramble.

Headers

Key
Value

Authorization

Your own personal API key, create one by clicking here. This is required.

Request Example

GET https://api.erensko.xyz/v1/scramble?word=example

Example Response:

{
  "scrambled": "xmleae",
  "original": "example",
  "wordLength": 7,
  "uniqueCharacterCount": 6,
  "difficultyLevel": "Medium",
  "timestamp": "2024-11-08T12:30:00.000Z",
  "isValid": true,
  "scrambleComplexity": 1,
  "hint": "e",
  "wordType": "Noun"
}

Last updated