Deep Research Actor avatar
Deep Research Actor
Under maintenance

Pricing

Pay per usage

Go to Apify Store
Deep Research Actor

Deep Research Actor

Under maintenance

Actor

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Ashish Kumar Verma

Ashish Kumar Verma

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

An AI-powered deep research service that performs comprehensive research on any query using multiple AI agents. Deployed as an Apify Actor with a REST API.

Overview

This actor orchestrates multiple specialized AI agents to conduct thorough research on any topic. It automatically:

  1. Plans - Creates a structured report outline with sections and key questions
  2. Researches - Runs concurrent iterative research loops for each section
  3. Synthesizes - Combines findings into a polished, comprehensive markdown report

API Endpoints

EndpointMethodDescription
/GETHealth check and API info
/healthGETHealth check
/researchPOSTStart a new research job
/researchGETList all research jobs
/research/{job_id}/statusGETGet job status
/research/{job_id}/resultGETGet markdown result
/research/{job_id}/logsGETGet logs (supports long polling)

Quick Start

Start a Research Job

curl -X POST http://localhost:8080/research \
-H "Content-Type: application/json" \
-d '{"query": "What are the latest developments in quantum computing?"}'

Response:

{
"job_id": "abc123",
"status": "pending",
"message": "Research job started. Use /research/{job_id}/status to check progress."
}

Configuration

Request Parameters

ParameterTypeDefaultDescription
querystringrequiredThe research question or topic
max_iterationsint5Maximum research iterations per section
max_time_minutesint10Maximum time per section