---
title: "Get Current Topics"
method: GET
path: "/topics/v1/current"
tags: ["Topics"]
---

# Get Current Topics

`GET /topics/v1/current`

Retrieve today's trending topics. Returns a snapshot of topics that are actively trending right now, refreshed throughout the day. Topics can be filtered by class and sorted by different criteria. Each topic includes a title, summary, detailed content, rank, associated assets, and top source documents.

## Query parameters

- `classes` string[]
- `sort` 'trending' | 'new' | 'top'
- `assetIDs` string
- `page` integer
- `limit` integer

## Response `200`

Successfully retrieved topics

- TopicsResponse
  - `error` string, nullable
  - `data` Topic[]
    - `title` string — Title of the topic
    - `summary` string — Brief summary of the topic
    - `content` string — Detailed content about the topic
    - `rank` number — Ranking of the topic
    - `classes` string[] — Topic classification tags
    - `topDocuments` TopicDocument[] — Top source documents for this topic
      - `url` string — URL of the source document
      - `type` string — Type of document (e.g., x_post, article)
    - `documentCount` number — Number of source documents
    - `avgDocumentTimestamp` string, date-time — Average timestamp of source documents
    - `assets` AssetEntity[] — Assets associated with this topic
      - `id` string — Asset UUID
      - `name` string — Asset name
      - `symbol` string — Asset symbol
      - `slug` string — Asset slug
  - `metadata` TopicsMetadata
    - `snapshotTime` string, date-time — Timestamp of the data snapshot
    - `includedClasses` string[] — List of topic classes included in the results

## Other responses

- `400` — Bad request - invalid parameters
- `403` — Forbidden - insufficient subscription tier
- `500` — Internal server error

---

[API](https://skmtc.net/messari/apis/messari-api-deep-research-v1.md) · [All operations](https://skmtc.net/messari/apis/messari-api-deep-research-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/messari/messari-api-deep-research-v1/revisions/af35b9757e14/schema)
