Tender Signal Harvester
Pricing
from $25.00 / 1,000 tender signals
Tender Signal Harvester
Extract tender, RFP, solicitation, deadline, buyer, budget, category, and qualification signals from public procurement pages or pasted notices.
Tender Signal Harvester
Pricing
from $25.00 / 1,000 tender signals
Extract tender, RFP, solicitation, deadline, buyer, budget, category, and qualification signals from public procurement pages or pasted notices.
You can access the Tender Signal Harvester 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 API & Integrations in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "startUrls": [10 { "url": "https://sam.gov/search/" },11 { "url": "https://www.contractsfinder.service.gov.uk/Search" },12 ],13 "sourceTexts": [14 "City of Lakes Procurement Office RFP 24-118 seeks a cloud document management vendor. Submission deadline August 30, 2026. Estimated contract value $250,000. Questions due August 12. Open competitive solicitation for municipal IT services in Minnesota. Contact procurement@cityoflakes.gov.",15 "Ministry of Health tender notice invites bids for telehealth platform implementation across regional clinics. Closing date 2026-09-15. Budget up to GBP 420,000. Eligible suppliers must show ISO 27001 certification and healthcare deployment references.",16 ],17}18
19# Run the Actor and wait for it to finish20run = client.actor("seeb/tender-signal-harvester").call(run_input=run_input)21
22# Fetch and print Actor results from the run's dataset (if there are any)23print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")24for item in client.dataset(run.default_dataset_id).iterate_items():25 print(item)26
27# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Tender Signal Harvester API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: