get_top_deals
Retrieve trending deals from multiple sources like Slickdeals and RapidAPI. Specify sources and limit results to find the best offers quickly.
Instructions
Get top/trending deals from all or specific sources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of deals to return | |
sources | No | Specific sources to get deals from |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Maximum number of deals to return",
"type": "number"
},
"sources": {
"description": "Specific sources to get deals from",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}