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

# Get Generation Job

> Read the progress of a generation, and whether it finished.



## OpenAPI

````yaml get /v2/profiles/jobs/{job_id}/
openapi: 3.0.1
info:
  title: Mem0 API Docs
  description: mem0.ai API Docs
  contact:
    email: support@mem0.ai
  license:
    name: Apache 2.0
  version: v1
servers:
  - url: https://api.mem0.ai/
security:
  - ApiKeyAuth: []
paths:
  /v2/profiles/jobs/{job_id}/:
    get:
      tags:
        - profiles
      summary: Read a generation job
      description: >-
        The job nests under `job`. `total` is null until `enumeration_complete`,
        and `completed` is `succeeded + failed + skipped`.
      operationId: profiles_get_job
      parameters:
        - in: path
          name: job_id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The job.
          content:
            application/json:
              schema:
                type: object
                properties:
                  job:
                    type: object
                    properties:
                      id:
                        type: string
                      operation:
                        type: string
                      entity_type:
                        type: string
                      status:
                        type: string
                        enum:
                          - QUEUED
                          - RUNNING
                          - SUCCEEDED
                          - PARTIALLY_SUCCEEDED
                          - FAILED
                          - CANCELLED
                      total:
                        type: integer
                        nullable: true
                      enumeration_complete:
                        type: boolean
                      completed:
                        type: integer
                      succeeded:
                        type: integer
                      failed:
                        type: integer
                      skipped:
                        type: integer
        '404':
          description: No such job in this project.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key authentication. Prefix your Mem0 API key with 'Token '. Example:
        'Token your_api_key'

````