Biddingo Public Tenders Scraper
Pricing
Pay per event
Biddingo Public Tenders Scraper
π¨π¦ Find public Biddingo tenders with buyers, locations, deadlines, descriptions, addenda, Q&A, submission, result, and award indicators.
Biddingo Public Tenders Scraper
Pricing
Pay per event
π¨π¦ Find public Biddingo tenders with buyers, locations, deadlines, descriptions, addenda, Q&A, submission, result, and award indicators.
You can access the Biddingo Public Tenders Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youβll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "keywords": "roofing",12 "searchUrls": [],13 "status": "open",14 "buyer": "",15 "region": "",16 "province": "",17 "city": "",18 "postedAfter": "",19 "closingBefore": "",20 "maxItems": 10,21 "offset": 0,22 "includeDetails": true,23 "requestDelayMs": 15024};25
26// Run the Actor and wait for it to finish27const run = await client.actor("automation-lab/biddingo-public-tenders-scraper").call(input);28
29// Fetch and print Actor results from the run's dataset (if any)30console.log('Results from dataset');31console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);32const { items } = await client.dataset(run.defaultDatasetId).listItems();33items.forEach((item) => {34 console.dir(item);35});36
37// π Want to learn more π? Go to β https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Biddingo Public Tenders Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: