# Facts Get Facts

> Returns a randomly selected fact, optionally filtered by category.

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

---


## Endpoint

**GET https://requiems.xyz/v1/entertainment/facts**

## Get Random Fact

Returns a randomly selected fact, optionally filtered by category.

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `category` | string | no | query | Filter by category. Valid values: science, history, technology, nature, space, food |

## Response Example

```json
{
  "data": {
    "fact": "Honey never spoils. Archaeologists have found 3,000-year-old honey in Egyptian tombs that was still perfectly edible.",
    "category": "science",
    "source": "National Geographic"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `fact` | string | The fact text |
| `category` | string | The category the fact belongs to |
| `source` | string | The source or publication the fact is attributed to |

## Errors

- `undefined` **400** — undefined

