API-ReferenzGET

Mentions auflisten

Listet KI-bewertete Mentions aus Reddit, Hacker News, X und Bluesky mit Filtern und Pagination auf.

GEThttps://ai.redreplier.com/ai-app/api/v1/mentions

Listet KI-bewertete Mentions aus Reddit, Hacker News, X und Bluesky mit Filtern und Pagination auf.

Bearer-Token (RedReplier-API-Token)

Authentifizierung

Sende bei jeder Anfrage ein RedReplier-API-Token als Bearer-Token. Tokens beginnen mit redreplier_; RedReplier ermittelt das Konto aus dem Token.

Authorization: Bearer redreplier_test_1234567890
Content-Type: application/json

Parameter

  • websiteId (Query, UUID, optional): Filtert auf eine Website.
  • statuses (Query, wiederholbar, optional): Mention-Statuswerte: NEW, APPROVED, REJECTED.
  • scoreBuckets (Query, wiederholbar, optional): Relevanz-Buckets: VERY_LOW, LOW, MEDIUM, HIGH, VERY_HIGH.
  • includeLowRelevance (Query, Boolean, optional): Schließt Mentions mit Score unter 30 ein.
  • keywords (Query, wiederholbar, optional): Filtert nach Keyword-Werten.
  • sources (Query, wiederholbar, optional): Mention-Quellen: REDDIT_POST, REDDIT_COMMENT, TWITTER (X), BLUESKY, HACKERNEWS.
  • sort (Query, optional): Sortierung: RELEVANCE oder RECENT.
  • from, to (Query, ISO-String, optional): Ingestion-Zeitraum.
  • limit (Query, Integer, optional, 1-500, Standard 50): Seitengröße.
  • offset (Query, Integer, optional, min. 0, Standard 0): Pagination-Offset.

Request-Body

Dieser Endpoint benötigt keinen JSON-Body.

Antwort

Gibt paginierte öffentliche Mention-Objekte zurück.

  • mentions (Mention[]): Mentions auf der aktuellen Seite.
  • total (number): Gesamtzahl passender Mentions.
  • limit (number): Von der Antwort verwendete Seitengröße.
  • offset (number): Von der Antwort verwendeter Pagination-Offset.

Mention-Objekt

  • id (string): Mention-UUID.
  • websiteId (string | null): Website-UUID.
  • source (string): REDDIT_POST, REDDIT_COMMENT, TWITTER (X), BLUESKY oder HACKERNEWS.
  • keyword (string | null): Keyword-Wert, der gepasst hat.
  • title, contentText, url, author, subreddit (string | null): Kontext für Titel, Inhalt und Link. subreddit wird nur für Reddit-Quellen gesetzt und ist null für X, Bluesky und Hacker News.
  • status (string): NEW, APPROVED oder REJECTED.
  • relevanceScore (number | null): KI-Relevanzscore von 0 bis 100 oder null.
  • relevanceReason (string | null): KI-Erklärung für den Treffer oder null.
  • tags (string[]): KI-generierte Relevanz-Tags.
  • publishedAt, ingestedAt, reviewedAt, createdAt, updatedAt (ISO string | null): Zeitpunkte für Veröffentlichung, Ingestion, Review, Erstellung und Aktualisierung im ISO-8601-Format oder null.

Beispielanfrage

curl -s 'https://ai.redreplier.com/ai-app/api/v1/mentions?statuses=NEW&scoreBuckets=HIGH&scoreBuckets=VERY_HIGH&sort=RECENT&limit=20' \
  -H 'Authorization: Bearer redreplier_test_1234567890'

Hinweise

Standardmäßig werden REJECTED Mentions ausgeschlossen und Mentions unter Score 30 ausgeblendet. Buckets: VERY_LOW <10, LOW 10-29, MEDIUM 30-49, HIGH 50-74, VERY_HIGH >=75.

Fehler

  • 400 Bad Request: Ungültige Eingabe, URL, UUID, Enum, Query-Parameter oder Body.
  • 401 Unauthorized: Fehlendes oder ungültiges Bearer-Token.
  • 404 Not Found: Die Ressource existiert nicht für das Token-Konto.
  • 500 Internal Server Error: Unerwarteter Serverfehler.
Beispielanfrage (curl)
curl --request GET \
  --url https://ai.redreplier.com/ai-app/api/v1/mentions?websiteId=9b0f2b8d-4a76-4f59-9f0b-6b4b6f6c2a10&statuses=NEW&sort=RELEVANCE&limit=25 \
  --header 'Authorization: Bearer redreplier_test_1234567890'
200
{
  "mentions": [
    {
      "id": "6a9f0e8b-2c65-44f7-b6e6-7f88a7df8301",
      "websiteId": "9b0f2b8d-4a76-4f59-9f0b-6b4b6f6c2a10",
      "source": "REDDIT_POST",
      "keyword": "agency CRM",
      "title": "Best CRM for a small agency?",
      "contentText": "We need a lightweight CRM for client follow-ups and deal tracking.",
      "url": "https://reddit.com/r/sales/comments/example/best_crm_for_a_small_agency",
      "author": "agency_ops",
      "subreddit": "sales",
      "status": "NEW",
      "relevanceScore": 86,
      "relevanceReason": "The thread asks for an agency CRM, which directly matches the monitored product category.",
      "tags": ["recommendation-request", "high-intent"],
      "publishedAt": "2026-05-29T09:20:00.000Z",
      "ingestedAt": "2026-05-29T09:24:12.000Z",
      "reviewedAt": null,
      "createdAt": "2026-05-29T09:24:12.000Z",
      "updatedAt": "2026-05-29T09:24:12.000Z"
    }
  ],
  "total": 1,
  "limit": 25,
  "offset": 0
}