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

# Get Job

> Retrieve details of a specific workflow job by ID



## OpenAPI

````yaml get /api/workflow_jobs/{job_id}
openapi: 3.1.0
info:
  title: Axion Backend API
  description: Backend API for Axion platform with desktop automation capabilities
  version: 1.0.0
servers:
  - url: https://api.getgranite.ai
    description: Production server
  - url: http://localhost:8000
    description: Local development server
security: []
tags:
  - name: Authentication
    description: User authentication and session management
  - name: Organizations
    description: Organization management and membership
  - name: Health
    description: API health and status monitoring
  - name: Automations
    description: Automation planning and execution
  - name: MIG
    description: Managed Instance Group operations
  - name: Agent
    description: Agent execution and streaming
  - name: Onboarding
    description: Organization onboarding flow
  - name: Organization Automations
    description: Organization automation endpoint management
  - name: Organization Endpoints
    description: Public endpoints for organization automations
  - name: Analytics
    description: Analytics and reporting endpoints
paths:
  /api/workflow_jobs/{job_id}:
    get:
      tags:
        - Automations
      summary: Get a specific workflow job
      description: Retrieve details of a specific workflow job by ID
      operationId: getWorkflowJob
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowJobResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WorkflowJobResponse:
      properties:
        job_id:
          type: string
          title: Job Id
          description: Unique job identifier
        user_id:
          type: string
          title: User Id
          description: User who created the job
        org_id:
          type: string
          title: Org Id
          description: Organization ID
        name:
          type: string
          title: Name
          description: Workflow job name
        prompt:
          type: string
          title: Prompt
          description: Automation task description
        workflow_data:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Workflow Data
          description: Workflow data structure
        http_method:
          anyOf:
            - type: string
            - type: 'null'
          title: Http Method
          description: HTTP method (GET, POST, PUT, DELETE)
        api_endpoint:
          anyOf:
            - type: string
            - type: 'null'
          title: Api Endpoint
          description: API endpoint URL
        parameters_schema:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Parameters Schema
          description: JSON schema for API parameters
        results_schema:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Results Schema
          description: JSON schema for API results
        status:
          type: string
          title: Status
          description: Job status (draft, ready, executing, completed, failed)
        manual_edits:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Manual Edits
          description: Manual edits to workflow
        created_at:
          type: string
          title: Created At
          description: Creation timestamp
        updated_at:
          type: string
          title: Updated At
          description: Last update timestamp
        completed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Completed At
          description: Completion timestamp
      type: object
      required:
        - job_id
        - user_id
        - org_id
        - name
        - prompt
        - status
        - created_at
        - updated_at
      title: WorkflowJobResponse
      description: Response containing workflow job information
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````