Skip to content

Get Breakout Topic

v1.0.0
OpenAPI 3.1.0

Upriver API

A social insights API for ad generation platforms. It provides structured signals, like psychographics, behavioral insights, trends, and audience language, to help AI models generate relevant, higher-converting ads.

Server:https://api.upriver.ai

Production API server

Client Libraries

Get Breakout Topic

Get a single breakout topic by ID.

Path Parameters
  • topic_id
    Type: string · Topic Id
    required

    Breakout topic UUID returned by GET /v1/topics/breakout or POST /v1/topics/breakout/search. Do not pass raw query text or domains.

Query Parameters
  • include
    Type: array string[] · Includeenum

    Which expansions to return. The topic detail includes citations and entities by default; pass include to limit the response to a subset, e.g. include=citations. Allowed values: citations, entities.

    values
    • citations
    • entities
  • feed
    Type: string · Feednullable

    Entitled private feed that returned this topic.

Responses
  • application/json
  • application/json
Request Example for get/v1/topics/breakout/{topic_id}
curl 'https://api.upriver.ai/v1/topics/breakout/{topic_id}' \
  --header 'X-API-Key: YOUR_SECRET_TOKEN'
{
  "topic": {
    "topic_id": "string",
    "topic_name": "string",
    "vertical": "string",
    "category": "string",
    "status": "string",
    "score": 1,
    "relevance_score": 1,
    "engagement": {
      "percentile_score": 1
    },
    "peak_score": 1,
    "confidence_score": 1,
    "discovered_at": "2026-09-05T06:49:26.587Z",
    "earliest_evidence_at": "2026-09-05T06:49:26.587Z",
    "last_signal_at": "2026-09-05T06:49:26.587Z",
    "updated_at": "2026-09-05T06:49:26.587Z",
    "source_summary": {
      "additionalProperty": 1
    },
    "citations": [
      {
        "source_category": "string",
        "source_url": "string",
        "title": "string",
        "display": "",
        "snippet": "string",
        "source_authority": 1,
        "engagement_score": 1,
        "published_at": "2026-09-05T06:49:26.587Z"
      }
    ],
    "entities": [
      {
        "canonical_name": "string",
        "entity_id": "string",
        "entity_type": "string",
        "confidence": 1,
        "entity_subtype": "string"
      }
    ],
    "trend": {
      "momentum": 0,
      "direction": "up"
    },
    "citation_rate": [
      {
        "day": "string",
        "count": 1
      }
    ],
    "narrative": {
      "narrative_id": "string",
      "display_name": "string",
      "member_count": 1,
      "arc_summary": [
        "string"
      ]
    },
    "temporal_status": "upcoming",
    "event_start_at": "2026-09-05T06:49:26.587Z",
    "event_end_at": "2026-09-05T06:49:26.587Z"
  }
}