Deep Research
Advanced research operations
Retrieves all deep research requests made by the authenticated user
Successfully retrieved deep research requests
GET /deep-research/research HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer JWT
Accept: */*
Successfully retrieved deep research requests
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"requestedOn": "2024-01-15T10:30:00Z",
"succeededOn": "2024-01-15T10:35:00Z",
"status": 100,
"errorOn": null,
"errorMessage": null,
"errorCode": 0,
"prompt": "What are the latest developments in artificial intelligence?",
"isScheduleTemplate": true,
"scheduleId": "550e8400-e29b-41d4-a716-446655440000",
"dailyCount": 2,
"scheduleEndDate": "2024-12-31T23:59:59Z",
"lastScheduleExecutionOn": "2024-01-16T09:00:00Z",
"nextScheduleExecutionOn": "2024-01-16T12:00:00Z"
}
]
Conducts advanced research on the provided text query and returns results in the specified output format
The research query text
What are the latest developments in artificial intelligence?
The format of the output result
text
Possible values: The AI provider to use for research (defaults to gemini)
gemini
Possible values: Optional callback data to be returned with the response
user-specific-data
If true, creates a recurring schedule instead of a one-time request
false
Number of times per day to execute the research (default 1, only used when isScheduled is true)
2
Optional end date for the schedule (only used when isScheduled is true). If not provided, schedule runs indefinitely.
2024-12-31T23:59:59Z
Research request or schedule submitted successfully
Bad request - validation error or unauthorized access
Unauthorized - invalid or missing token
Internal server error
POST /deep-research/research HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 223
{
"text": "What are the latest developments in artificial intelligence?",
"outputType": "text",
"provider": "gemini",
"callbackData": "user-specific-data",
"isScheduled": false,
"dailyCount": 2,
"scheduleEndDate": "2024-12-31T23:59:59Z"
}
{
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
Retrieves a single deep research request by its unique ID
The ID of the deep research request to retrieve
Successfully retrieved deep research request
Deep research request not found
Internal server error
GET /deep-research/research/{id} HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer JWT
Accept: */*
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"requestedOn": "2024-01-15T10:30:00Z",
"succeededOn": "2024-01-15T10:35:00Z",
"status": 100,
"errorOn": null,
"errorMessage": null,
"errorCode": 0,
"prompt": "What are the latest developments in artificial intelligence?",
"isScheduleTemplate": true,
"scheduleId": "550e8400-e29b-41d4-a716-446655440000",
"dailyCount": 2,
"scheduleEndDate": "2024-12-31T23:59:59Z",
"lastScheduleExecutionOn": "2024-01-16T09:00:00Z",
"nextScheduleExecutionOn": "2024-01-16T12:00:00Z",
"responseText": "Based on recent research, artificial intelligence has made significant advances in..."
}