Stock Scraper

FREEMIUM
Por Satvik Gaikwad | Actualizada एक महीने पहले | Finance
Popularidad

0.2 / 10

Latencia

345,347ms

Nivel de servicio

0%

Health Check

N/A

Seguidores: 2
Recursos:
Sitio web del producto Condiciones de uso
Creador de la API:
Rapid account: Satvik Gaikwad
Satvik Gaikwad
satvik.g.code
Inicie sesión para calificar la API
Valoración: 5 - Votos: 1

LÉAME

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