GET
/v1/stories/{id}/developments
v1List story developments
Retrieve the timeline of developments for a story. Each development represents a significant change or update in the story's progression.
Parameters
| Name | Type | Description |
|---|---|---|
id required | string | Story ID (integer) or slug (string) e.g. 1523 |
id required stringStory ID (integer) or slug (string)
e.g. 1523
Request Examples
bash
curl "https://api.newsrank.ai/v1/stories/1523/developments" \
-H "Authorization: Bearer nrf_your_api_key"Response
json
{
"developments": [
{
"id": 42,
"cluster_id": 1523,
"created_at_ms": 1708300800000,
"title": "Court announces ruling date",
"description": "The Supreme Court has set a date for the landmark climate ruling...",
"significance": "major",
"previous_headline": "Climate Case Heads to Supreme Court",
"new_headline": "Supreme Court Issues Landmark Climate Ruling",
"trigger_article_hashes": [
"a1b2c3d4e5"
],
"enrichment_seq": 3
}
],
"count": 5
}Try it
Server
Using sandbox demo key (5 req/min) — no signup required
Authentication
Demo key (sandbox)
Endpoint
GET /v1/stories/{id}/developments