> ## 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.

# Get Session Status

> Returns the current status of a session and the final result when complete.



## OpenAPI

````yaml /openapi.json get /functions/v1/get-session-status
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/get-session-status:
    get:
      tags:
        - AI Research
      summary: Get Session Status
      description: >-
        Returns the current status of a session and the final result when
        complete.
      parameters:
        - name: session_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
          description: Session identifier.
      responses:
        '200':
          description: Session status.
          content:
            application/json:
              example:
                session_id: 11111111-1111-1111-1111-111111111111
                status: complete
                results:
                  kind: deepsearch
                  human: |-
                    # Research summary

                    - Main takeaway: Example risk is moderate.
                  machine:
                    summary: Example risk is moderate.
                    risk_level: medium
                  total_points: 50
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Internal Error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````