Chat (UniFuncs Deep Research) 
Run in Apifox 
Pricing: Input 1.5 PTC/M Output 3PTC/M Request Body Params   application/json 
{ 
  "model" :  "unifuncs-deepresearch" , 
  "messages" :  [ 
    { 
      "role" :  "user" , 
      "content" :  "调研ANP协议" 
    } 
  ] , 
  "stream" :  true , 
  "introduction" :  "您是 U深研,一个由 UniFuncs 自主研发的专注于网络信息深度研究(Deep Research)的专家。" , 
  "plan_approval" :  false , 
  "max_depth" :  25 , 
  "output_type" :  "report" , 
  "output_length" :  10000 , 
  "reference_style" :  "link" , 
  "content_verification" :  false } Request Code Samples 
curl  --location  --request  POST 'https://api.302.ai/v1/chat/completions?async=true'  \
--header  'Accept: application/json'  \
--header  'Authorization: Bearer '  \
--header  'Content-Type: application/json'  \
--data-raw  '{
  "model": "unifuncs-deepresearch",
  "messages": [
    {
      "role": "user",
      "content": "调研ANP协议"
    }
  ],
  "stream": true,
  "introduction": "您是 U深研,一个由 UniFuncs 自主研发的专注于网络信息深度研究(Deep Research)的专家。",
  "plan_approval": false,
  "max_depth": 25,
  "output_type": "report",
  "output_length": 10000,
  "reference_style": "link",
  "content_verification": false
}' Responses application/json Generate Code 
{ 
    "id" :  "chatcmpl-123" , 
    "object" :  "chat.completion" , 
    "created" :  1677652288 , 
    "choices" :  [ 
        { 
            "index" :  0 , 
            "message" :  { 
                "role" :  "assistant" , 
                "content" :  "\n\nHello there, how may I assist you today?" 
            } , 
            "finish_reason" :  "stop" 
        } 
    ] , 
    "usage" :  { 
        "prompt_tokens" :  9 , 
        "completion_tokens" :  12 , 
        "total_tokens" :  21 
    } 
} Modified at  2025-07-31 08:39:04