Stock Scraper

免费增值
通过 Satvik Gaikwad | 已更新 2 месяца назад | Finance
人气

0.2 / 10

延迟

360,039ms

服务等级

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);
    	});