# Narratives

The Narratives API returns trending narratives in the creator ecosystem, with historical momentum tracking. Use it to identify emerging themes and topics before they peak.

## List narratives

```http
GET /v1/narratives
```

Returns trending narratives, ordered by momentum score.

**Query parameters**

| Parameter   | Type    | Description                                     |
| ----------- | ------- | ----------------------------------------------- |
| `ecosystem` | string  | Filter by ecosystem (e.g., `base`, `solana`)    |
| `category`  | string  | Filter by category                              |
| `period`    | string  | Trend window: `24h`, `7d`, `30d`. Default: `7d` |
| `limit`     | integer | Results per page. Default: 20, max: 50          |

**Example response**

```json
{
  "data": [
    {
      "id": "nar_001",
      "label": "AI agents on-chain",
      "momentum_score": 94.2,
      "momentum_trend": "rising",
      "mention_count_7d": 4820,
      "mention_count_change_pct": 38.4,
      "top_platforms": ["x", "tiktok"],
      "related_projects": ["prj_xyz789"]
    }
  ]
}
```

## Get a narrative

```http
GET /v1/narratives/{id}
```

Returns the full profile for a narrative including historical momentum data.

**Example response**

```json
{
  "data": {
    "id": "nar_001",
    "label": "AI agents on-chain",
    "momentum_score": 94.2,
    "momentum_trend": "rising",
    "history": [
      { "date": "2026-05-01", "mention_count": 620, "momentum_score": 78.1 },
      { "date": "2026-05-02", "mention_count": 890, "momentum_score": 85.4 },
      { "date": "2026-05-03", "mention_count": 1240, "momentum_score": 94.2 }
    ],
    "top_contributors": ["ctr_abc123", "ctr_def456"],
    "related_projects": ["prj_xyz789"]
  }
}
```

## Momentum scores

Momentum scores (0–100) reflect the velocity and acceleration of a narrative, not just its raw volume. A score of 90+ indicates a narrative growing significantly faster than baseline activity in that category.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.airaa.xyz/api-reference/narratives.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
