Skip to main content
POST
/
api
/
v1
/
integration
/
deep_researchs
cURL
curl -X POST 'https://app-be.thesis.io/api/v1/integration/deep_researchs' \
  -H 'Authorization: Bearer YOUR_SPACE_API_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "initial_user_msg": "Research the latest developments in DeFi",
    "system_prompt": "You are a thorough DeFi researcher who provides comprehensive analysis with citations"
  }'
{
  "status": "ok",
  "conversation_id": "conv_abc123def456"
}

Authorizations

Authorization
string
header
required

Enter your API token in the format: Bearer <your_token_here>

Body

application/json
initial_user_msg
string | null

Initial research query to begin deep analysis

Example:

"Research the latest developments in DeFi"

mcp_disable
Mcp Disable · object

MCP tools to disable during deep research

system_prompt
string | null

System prompt for deep research mode behavior

Example:

"You are a thorough DeFi researcher who provides comprehensive analysis with citations"

Response

Deep research conversation created successfully

status
string
required

Response status, always 'ok' for successful creation

Example:

"ok"

conversation_id
string
required

Unique identifier for the created conversation

Example:

"conv_abc123def456"