Skip to main content
POST
/
api
/
news
/
fetch
[Legacy] Fetch News Report
curl --request POST \
  --url https://api.wokelo.ai/api/news/fetch/ \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "report_id": 123,
  "page": 123,
  "page_size": 123
}
'
{
    "report_id": 72053,
    "data": [
        {
            "ai_summary": "Wokelo has announced a minority equity investment from KPMG LLP, marking a significant step in their growth strategy.",
            "type": "Investments",
            "url": "https://kpmg.com/us/en/media/news/kpmg-wokelo-investment-2024.html",
            "title": "Wokelo Announces Minority Equity Investment from KPMG LLP"
        }
    ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.wokelo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

This endpoint retrieves the news items from an existing news report run via the Get News Report endpoint /api/news/start/ news. It returns the news items as a JSON

Endpoint Details

  • Method: POST
  • Endpoint: /api/news/fetch/

Authentication requirements

  • Include a valid JWT token in your request header
  • If you don’t have a token yet, you can get one from the /auth/token/ endpoint first.

Request

Request Parameter

Header Parameters

Authorization
string
required
JWT token obtained from the Authentication request

Body Parameters

report_id
integer
required
Report ID of the news report from which the news is to be retrieved
page
integer
Page number from which the news is to be returned in the response. Default: 1
page_size
integer
Number of news items per page. Default: 500

Response

Successful response will include the news items as a JSON
{
    "report_id": 72053,
    "data": [
        {
            "ai_summary": "Wokelo has announced a minority equity investment from KPMG LLP, marking a significant step in their growth strategy.",
            "type": "Investments",
            "url": "https://kpmg.com/us/en/media/news/kpmg-wokelo-investment-2024.html",
            "title": "Wokelo Announces Minority Equity Investment from KPMG LLP"
        }
    ]
}