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

# Get Task Details

> Retrieve detailed information about a specific task including its status and output.



## OpenAPI

````yaml openapi.json get /v2/tasks/{taskId}
openapi: 3.0.0
info:
  title: '@fastify/swagger'
  description: API for Eden.art platform
  version: 8.14.0
servers:
  - url: https://api.eden.art
    description: Production server
  - url: https://api-staging.eden.art
    description: Staging server
  - url: http://localhost:8080
    description: Development server
security: []
tags:
  - name: Agent Creation
    description: Operations related to agent creation
  - name: Agents
    description: Operations related to agents
  - name: Agents - Deployments
    description: Operations related to agents - deployments
  - name: Agents - Memory
    description: Operations related to agents - memory
  - name: Agents - Triggers
    description: Operations related to agents - triggers
  - name: API Keys
    description: Operations related to api keys
  - name: Collections
    description: Operations related to collections
  - name: Concepts V2
    description: Operations related to concepts v2
  - name: Creations
    description: Operations related to creations
  - name: Creators
    description: Operations related to creators
  - name: Manna
    description: Operations related to manna
  - name: Models
    description: Operations related to models
  - name: Sessions
    description: Operations related to sessions
  - name: Sessions - Permissions
    description: Operations related to sessions - permissions
  - name: Tasks
    description: Operations related to tasks
  - name: Tools
    description: Operations related to tools
paths:
  /v2/tasks/{taskId}:
    get:
      tags:
        - Tasks
      summary: Get Task Details
      description: >-
        Retrieve detailed information about a specific task including its status
        and output.
      parameters:
        - required: true
          in: path
          name: taskId
          schema:
            type: string
      responses:
        '200':
          description: Default Response
          content:
            '*/*':
              schema:
                type: object
                properties:
                  task:
                    type: object
                    properties:
                      _id:
                        type: string
                      user:
                        type: object
                        properties:
                          _id:
                            type: string
                          userId:
                            type: string
                          username:
                            type: string
                          userImage:
                            type: string
                        required:
                          - _id
                          - userId
                          - username
                          - userImage
                      agent: {}
                      tool:
                        type: string
                      cost:
                        type: number
                      output_type:
                        type: string
                      args: {}
                      status:
                        type: string
                      performance: {}
                      result: {}
                      model: {}
                      error: {}
                      progress:
                        type: number
                      updatedAt:
                        type: string
                      createdAt:
                        type: string
                    required:
                      - _id
                      - user
                      - tool
                      - args
                      - status
                required:
                  - task
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````