Contract Opportunities
Search public tenders and award history
Find live public-sector tenders, recent contract awards, buyer activity, and supplier-fit signals across official procurement sources. Useful for bid teams, consultants, and agencies that need revenue opportunities, incumbent evidence, and buyer watchlists in one place.
Search live and recent public procurement opportunities across official tender sources with filters for buyer, codes, geography, dates, values, and set-asides.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "contract-opportunities",
"skill": "search_opportunities",
"input": {
"query": "cyber security",
"source": "all",
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callOpen the canonical notice details for one procurement opportunity so you can inspect deadlines, buyer data, codes, and source documents.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "contract-opportunities",
"skill": "opportunity_details",
"input": {
"source": "ted",
"record_id": "102534-2016"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch recent contract awards and incumbents across official public spending and procurement award sources.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "contract-opportunities",
"skill": "search_awards",
"input": {
"query": "cyber security",
"source": "all",
"awarded_from": "2025-01-01",
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callSummarize a buyer or agency by combining open opportunities, recent awards, top suppliers, and value signals from the available sources.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "contract-opportunities",
"skill": "buyer_intelligence",
"input": {
"buyer_name": "Ministry of Defence",
"source": "all",
"limit": 8
}
}' \
https://api.toolrouter.com/v1/tools/callScore opportunities against a supplier profile using classification codes, geography, value range, set-asides, target buyers, and freshness.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "contract-opportunities",
"skill": "match_supplier_profile",
"input": {
"query": "software development",
"classification_system": "cpv",
"target_classification_codes": [
"72000000"
],
"target_country_codes": [
"GB",
"US"
],
"value_min": 50000,
"value_max": 5000000,
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callReturn a compact tender watchlist snapshot sorted by deadline, publication recency, or value for alerting and automation use cases.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "contract-opportunities",
"skill": "watchlist_snapshot",
"input": {
"query": "cyber security",
"sort_by": "deadline",
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"contract-opportunities","skill":"search_opportunities","input":{}}' \
https://api.toolrouter.com/v1/tools/call