initiate_deep_research
Launch a comprehensive research task combining multiple search queries with email enrichment options to retrieve filtered results, including school-specific data and contact details.
Instructions
Initiate a deep research job that combines multiple search variations with optional email enrichment. Each result costs 1 credit.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acceptance_threshold | No | Acceptance score threshold (0-100) for a match (default: 60) | |
enrich_emails | No | Whether to enrich results with contact information (default: true) | |
limit | No | Maximum number of results to return (default: 30, max: 100) | |
query | Yes | The search query to research | |
school | No | Filter results by school names |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"acceptance_threshold": {
"default": 60,
"description": "Acceptance score threshold (0-100) for a match (default: 60)",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"enrich_emails": {
"default": true,
"description": "Whether to enrich results with contact information (default: true)",
"type": "boolean"
},
"limit": {
"default": 30,
"description": "Maximum number of results to return (default: 30, max: 100)",
"maximum": 100,
"type": "number"
},
"query": {
"description": "The search query to research",
"type": "string"
},
"school": {
"description": "Filter results by school names",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query"
],
"type": "object"
}