Stock Scraper

FREEMIUM
By Satvik Gaikwad | Updated 1ใƒถๆœˆๅ‰ | Finance
Popularity

0.2 / 10

Latency

341,673ms

Service Level

0%

Health Check

N/A

Followers: 1
Resources:
Product Website Terms of use
API Creator:
Rapid account: Satvik Gaikwad
Satvik Gaikwad
satvik.g.code
Log In to Rate API
Rating: 5 - Votes: 1

README

Stock Scraper Api

pipeline status Coverage Status

Connect on RapidAPI

Api for scraping value of stock from Google Finance.

Getting started

Documentation

Visit https://stock-scraper.onrender.com/docs for documentation of API

API_Endpoint and API_KEY

Examples

  1. Code to check if you have valid api key

    let headersList = {
    	Accept: "*/*",
    	"X-RapidAPI-Host": "",
    	"X-RapidAPI-Key": "/api/", {
    	method: "GET",
    	headers: headersList
    })
    	.then(function (response) {
    		return response.text();
    	})
    	.then(function (data) {
    		console.log(data);
    	});
    
  2. Code to fetch the value of Microsoftโ€™s Stock from NASDAQ Exchange with Google Finance

    let headersList = {
    	Accept: "*/*",
    	"X-RapidAPI-Host": "",
    	"X-RapidAPI-Key": ""
    };
    
    fetch("/api/MSFT/NASDAQ", {
    	method: "GET",
    	headers: headersList
    })
    	.then(function (response) {
    		return response.text();
    	})
    	.then(function (data) {
    		console.log(data);
    	});