Stock Scraper

フリーミアム
よって Satvik Gaikwad | 更新済み 1ヶ月前 | Finance
人気

0.2 / 10

レイテンシー

345,347ms

サービスレベル

0%

Health Check

N/A

フォロワー:2
リソース:
製品のウェブサイト 利用規約
API作成者:
Rapid account: Satvik Gaikwad
Satvik Gaikwad
satvik.g.code
評価APIにログイン
評価:5-投票: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);
    	});