search_torrents
Find torrents across ThePirateBay, Nyaa, and YggTorrent using a specific query. Supports filtering by sources and limiting results to streamline your search process.
Instructions
Search for torrents on sources [thepiratebay.org, nyaa.si, yggtorrent].
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_items | No | ||
query | Yes | ||
sources | No |
Input Schema (JSON Schema)
{
"properties": {
"max_items": {
"default": 10,
"title": "Max Items",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"sources": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Sources"
}
},
"required": [
"query"
],
"type": "object"
}