search-bulk-channels
Search for multiple channels simultaneously on social platforms like Farcaster, with options for query limits and pagination, enabling efficient data retrieval.
Instructions
Search for multiple channels on a social platform in parallel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Cursor for pagination | |
limit | No | Maximum number of results to return per query | |
platform | Yes | The platform to search on (e.g., 'farcaster') | |
queries | Yes | Array of search queries |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return per query",
"type": "number"
},
"platform": {
"description": "The platform to search on (e.g., 'farcaster')",
"type": "string"
},
"queries": {
"description": "Array of search queries",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"platform",
"queries"
],
"type": "object"
}