search_opportunities
Find Australian Government ICT procurement opportunities using keywords and marketplace filters to identify relevant contracts across multiple procurement channels.
Instructions
Search for procurement opportunities on BuyICT with optional filters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | No | Search term to filter opportunities | |
| marketplace | No | Filter by marketplace code (e.g., PCS, SMP, CMP, LH, TMP, DC, HMP) | |
| page_size | No | Number of results per page (default: 15) | |
| page | No | Page number (default: 1) |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "Search term to filter opportunities",
"type": "string"
},
"marketplace": {
"description": "Filter by marketplace code (e.g., PCS, SMP, CMP, LH, TMP, DC, HMP)",
"enum": [
"PCS",
"SMP",
"CMP",
"LH",
"TMP",
"DC",
"HMP"
],
"type": "string"
},
"page": {
"default": 1,
"description": "Page number (default: 1)",
"minimum": 1,
"type": "number"
},
"page_size": {
"default": 15,
"description": "Number of results per page (default: 15)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}