# Random Word Get Random

> Returns a random word with its definition and part of speech

- Skill: `gabrielmoreira/random-word-get-random` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/random-word-get-random`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/random-word-get-random/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/random-word-get-random

---


## Endpoint

**GET https://requiems.xyz/v1/text/words/random**

## Get Random Word

Returns a random word with its definition and part of speech

## Response Example

```json
{
  "data": {
    "id": 123,
    "word": "ephemeral",
    "definition": "lasting for a very short time",
    "part_of_speech": "adjective"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `id` | integer | Unique identifier for the word |
| `word` | string | The random word |
| `definition` | string | Dictionary definition of the word |
| `part_of_speech` | string | Grammatical classification (e.g., noun, verb, adjective, adverb) |

## Errors

- `undefined` **503** — No words available in the database

