Yahoo Finance Search Scraper
Try for free
2 hours trial then $10.00/month - No credit card required now
View all Actors
Yahoo Finance Search Scraper
mscraper/yahoo-finance-search-scraper
Try for free
2 hours trial then $10.00/month - No credit card required now
Yahoo Finance Search Scraper is a tool designed to fetch search suggestions from Yahoo Finance based on the provided search terms. The scraper exports the accumulated data to various formats like JSON, XML, CSV, or Excel.
The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more
1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7 "searchTerms": [
8 "META",
9 "AAPL",
10 "GOOGL",
11 "AMZN",
12 "MSFT",
13 "TSLA"
14 ],
15 "proxy": {
16 "useApifyProxy": true,
17 "apifyProxyCountry": "US"
18 }
19}
20EOF
21
22# Run the Actor using an HTTP API
23# See the full API reference at https://docs.apify.com/api/v2
24curl "https://api.apify.com/v2/acts/mscraper~yahoo-finance-search-scraper/runs?token=$API_TOKEN" \
25 -X POST \
26 -d @input.json \
27 -H 'Content-Type: application/json'