Skip to main content
GET
/
news
/
stories
/
{id}
cURL
curl "https://app.mavera.io/api/v1/news/stories/STORY_ID" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "object": "news_story",
  "slug": "<string>",
  "id": "<string>",
  "name": "<string>",
  "summary": "<string>",
  "short_summary": "<string>",
  "image_url": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "article_count": 123,
  "unique_sources": 123,
  "unique_source_domains": [
    "<string>"
  ],
  "sentiment": {},
  "categories": [
    "<string>"
  ],
  "topics": [
    "<string>"
  ],
  "countries": [
    "<string>"
  ],
  "people": [
    {
      "wikidata_id": "<string>",
      "name": "<string>",
      "count": 123
    }
  ],
  "key_points": [
    {
      "point": "<string>",
      "references": [
        "<string>"
      ]
    }
  ],
  "questions": [
    {
      "question": "<string>",
      "answer": "<string>",
      "references": [
        "<string>"
      ]
    }
  ],
  "selected_articles": [
    {
      "url": "<string>",
      "title": "<string>",
      "description": "<string>",
      "source": "<string>",
      "pub_date": "<string>"
    }
  ],
  "history": [
    {
      "triggered_at": "<string>",
      "name": "<string>",
      "summary": "<string>",
      "key_points": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.

Path Parameters

id
string
required

Story ID

Query Parameters

include_history
boolean
default:true

Include story history

Response

Story details

object
enum<string>
Available options:
news_story
slug
string
id
string
name
string
summary
string
short_summary
string
image_url
string
created_at
string
updated_at
string
article_count
integer
unique_sources
integer
unique_source_domains
string[]
sentiment
object
categories
string[]
topics
string[]
countries
string[]
people
object[]
key_points
object[]
questions
object[]
selected_articles
object[]
history
object[] | null