Skip to main content
POST
/
api
/
v1
/
deep-research
curl -X POST "https://api.factagora.com/api/v1/deep-research" \
  -H "Authorization: Bearer fct_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"query": "impact of AI on employment"}'
{
  "query": "impact of AI on employment",
  "summary": "AI is projected to automate 15% of global jobs by 2030 while simultaneously creating new roles in AI development, maintenance, and oversight.",
  "sections": [
    {
      "title": "Jobs at Risk",
      "content": "Routine and repetitive tasks in manufacturing, data entry, and customer service are most vulnerable to automation. McKinsey estimates 400-800 million jobs could be displaced globally by 2030."
    },
    {
      "title": "New Job Creation",
      "content": "AI is creating demand for new roles such as AI engineers, prompt specialists, and ethics officers. The World Economic Forum estimates AI will create 97 million new jobs by 2025."
    }
  ],
  "sources": [
    "https://www.mckinsey.com/featured-insights/future-of-work",
    "https://www.weforum.org/reports/the-future-of-jobs-report-2020"
  ]
}
Perform in-depth research on any topic. Aggregates information from multiple sources and returns a structured report with sections and cited sources.

Request Body

query
string
required
The topic or question to research. Max 1000 characters.

Response

query
string
The original query that was submitted.
summary
string
A concise summary of the research findings.
sections
array
Structured report sections.
sources
array
List of source URLs referenced in the report.
curl -X POST "https://api.factagora.com/api/v1/deep-research" \
  -H "Authorization: Bearer fct_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"query": "impact of AI on employment"}'
{
  "query": "impact of AI on employment",
  "summary": "AI is projected to automate 15% of global jobs by 2030 while simultaneously creating new roles in AI development, maintenance, and oversight.",
  "sections": [
    {
      "title": "Jobs at Risk",
      "content": "Routine and repetitive tasks in manufacturing, data entry, and customer service are most vulnerable to automation. McKinsey estimates 400-800 million jobs could be displaced globally by 2030."
    },
    {
      "title": "New Job Creation",
      "content": "AI is creating demand for new roles such as AI engineers, prompt specialists, and ethics officers. The World Economic Forum estimates AI will create 97 million new jobs by 2025."
    }
  ],
  "sources": [
    "https://www.mckinsey.com/featured-insights/future-of-work",
    "https://www.weforum.org/reports/the-future-of-jobs-report-2020"
  ]
}