#
# # # # #

Trending News Scraper API

API:Financials

US$29US$40

  • Scrape up-to-date listed company news worldwide. News source has 100+ from mainstream media portals, such as Yahoo Finance, Bloomberg, Economics, etc. Users can scrape the news using a generic keyword, company name, or topics etc. It allows you to input the new start date and end date as well.

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


Trending News Scraper API Applied to Use in Google Sheets.

1 Mins Video Onsite App Demo


Trending News Scraper API Applied in BuyfromLo Onsite App.

Features

  • Trending News API provides up-to-date listed company news worldwide.
  • News source has 100+ from mainstream media portals, such as Yahoo Finance, Bloomberg, Economics, etc.
  • Users can scrape the news using a generic keyword, company name, or topics etc.
  • It allows you to input the new start date and end date as well.

API Endpoint Specifications

  • Endpoint Path: /api/1/trendingNews
  • Type of Data: JSON & 50 requests per min
  • Data Source: 100+ Media Portals
  • Request Limit: 500 requests/month (Included Income/Cashflow/Balancesheet statement data generator)
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

Trending News Scraper API Endpoint Basic Info

API Endpoint Path

required

Trending News Scraper API

https://www.buyfromlo.com/api/1/trendingNews


Call Method

Required

GET

Type of Data Return

JSON

JSON output structured data for Trending News Data


Available API Arguments & Parameters

Token

required

BUYFROMLO API token. Subscription API is available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well

keyword

required

Input a company name or a keyword related to the news that are intended to scrape

time

required

Enter a start date, such as 2023-01-01

timeTo

required

Enter an end date, such as 2023-01-02



Trending News Scraper API

https://www.buyfromlo.com/api/1/trendingNews


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://www.buyfromlo.com/api/1/trendingNews"

## Required Arguments & Parameters ##

token = "your buyfromlo token"
keyword = "target keyword"
time = "start date"
timeTo = "end date"

## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&keyword=" + keyword + "&time=" + time + "&timeTo=" + timeTo)
print(response.status)
print(response.json())
                        

JSON Response Sample


{
    "Date": "",
    "Keyword": "",
    "Title": "",
    "Description": "",
    "Publisher": "",
    "Published Time": "",
    "Content": "",
    "Article Link": "",
    "Img Link": ""
}