# Dream Interpretation API

> Dream Interpretation API. Browse and search our complete dream interpretation dictionary containing 2,000+ dream symbols with psychological meanings. Find

- Capability page: https://roxyapi.com/apis/dream-dictionary-api
- Full domain: https://roxyapi.com/products/dreams-api
- OpenAPI spec: https://roxyapi.com/api/v2/dreams/openapi.json
- Remote MCP server: https://roxyapi.com/mcp/dreams

## Overview

Browse and search our complete dream interpretation dictionary containing 2,000+ dream symbols with psychological meanings. Find dream meanings for animals (snake dreams, spider dreams, dog dreams), common scenarios (falling dreams, flying dreams, being chased, drowning), people (dreams about mother, father, baby, ex), objects (car, house, water, fire), emotions (fear, anxiety, love), body parts (teeth falling out, hair, eyes), colors, numbers, and abstract concepts. Filter by starting letter for A-Z navigation or search by keyword to find what your dreams mean.

## Endpoints

- `GET /api/v2/dreams/symbols` List and search dream symbols
- `GET /api/v2/dreams/symbols/{id}` Get dream symbol details
- `GET /api/v2/dreams/symbols/letters` Get symbol counts by letter
- `GET /api/v2/dreams/symbols/random` Get random dream symbols

## Example request

```bash
curl "https://roxyapi.com/api/v2/dreams/symbols" \
  -H "X-API-Key: YOUR_KEY"
```

## Example response

```json
{
  "total": 2526,
  "limit": 50,
  "offset": 0,
  "symbols": [
    {
      "id": "snake",
      "name": "Snake",
      "letter": "s"
    }
  ]
}
```

## Remote MCP

Every endpoint is a callable tool on the Remote MCP server at https://roxyapi.com/mcp/dreams over Streamable HTTP. Tool name for `GET /dreams/symbols`: `get_dreams_symbols`. `tools/list` is free; `tools/call` bills the same as REST.

## FAQ

### What does the Dream Interpretation API return?

Browse and search our complete dream interpretation dictionary containing 2,000+ dream symbols with psychological meanings. Every response is structured JSON with documented fields, not free text, so you map it straight into your product.

### How do I authenticate with the Dream Interpretation API?

Pass your key in the X-API-Key header on every request. Keys are delivered instantly at checkout with no approval queue. Use a secret sk key server side, or mint a publishable pk key locked to your origins for browser and no-code use.

### Does the Dream Interpretation API support multiple languages?

The Dream Interpretation API returns English responses. Other RoxyAPI domains such as astrology and numerology translate the full interpretation text across 8 languages via the lang query parameter.

### Is the Dream Interpretation API available over Remote MCP for AI agents?

Yes. Every endpoint is exposed as a callable tool on the Remote MCP server at https://roxyapi.com/mcp/dreams over Streamable HTTP, so Claude, ChatGPT, Cursor, and any MCP client auto-discover it with no local setup or Docker.

### How is the Dream Interpretation API billed?

Flat pricing: 1 request equals 1 quota unit, REST and MCP identical, with no credit weighting or per-token markup. Every plan includes all 12 domains, so the Dream Interpretation API is included at no extra cost.

## Full reference

Fetch the OpenAPI spec at https://roxyapi.com/api/v2/dreams/openapi.json. Master agent manifest at https://roxyapi.com/llms.txt.
