> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuralverge.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Run Research

> Starts the full research workflow and returns a session id immediately.



## OpenAPI

````yaml /openapi.json post /functions/v1/run-research
openapi: 3.0.0
info:
  title: NeuralVerge API
  version: 1.0.0
  description: >-
    NeuralVerge API for AI research workflows, search, extraction, and
    structured data source execution.
servers:
  - url: https://api.neuralverge.ai
    description: NeuralVerge API
security:
  - BearerAuth: []
tags:
  - name: AI Research
    description: Research workflows, search execution, and session tracking.
  - name: AI Extract
    description: Schema-driven extraction workflows.
  - name: AI Agents
    description: Reusable saved agents executed through the API.
  - name: Data Sources
    description: Focused provider lookups for LinkedIn, email, phone, and company data.
paths:
  /functions/v1/run-research:
    post:
      tags:
        - AI Research
      summary: Run Research
      description: Starts the full research workflow and returns a session id immediately.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - instructions
                - settings
              properties:
                instructions:
                  type: string
                  description: Main research task.
                settings:
                  type: object
                  properties:
                    country_code:
                      type: string
                    search_enabled:
                      type: boolean
                    deepsearch_model:
                      type: string
                    finalizer_model:
                      type: string
                    extract_schema_json:
                      type: string
            example:
              instructions: Analyze the company and identify the main risks.
              settings:
                country_code: us
                search_enabled: true
                deepsearch_model: base
                finalizer_model: gemini-3.0-pro
      responses:
        '200':
          description: Session started.
          content:
            application/json:
              example:
                session_id: 11111111-1111-1111-1111-111111111111
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '402':
          description: Payment Required
        '500':
          description: Internal Error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````