Skip to main content
GET
/
api
/
v1
/
stories
/
{public_id}
/
articles
List articles in a story
curl --request GET \
  --url http://localhost:3000/api/v1/stories/{public_id}/articles \
  --header 'Authorization: Bearer <token>'
{
  "articles": [
    {
      "id": "art_abc123def",
      "title": "Title",
      "title_en": "Title",
      "summary_en": "Summary",
      "article_url": "https://example.com/articles/abc123def",
      "content_type": "news",
      "published_at": "2023-11-07T05:31:56Z",
      "category": {
        "id": "<string>",
        "name": "<string>"
      },
      "source": {
        "name": "Source Name",
        "domain": "example.com"
      },
      "story_ids": [
        "<string>"
      ],
      "companies": [
        {
          "id": "<string>",
          "name": "<string>",
          "ticker_symbol": "<string>"
        }
      ],
      "country": "SE",
      "image_url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Path Parameters

public_id
string
required

Story ID.

Query Parameters

limit
integer

Number of articles to return per page (default 25, max 100).

cursor
string

Opaque pagination cursor from a previous response.

Response

Articles retrieved

articles
object[]