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

# Obtener estado del trabajo

> Consulta el estado de un trabajo de generación de proyecto.



## OpenAPI

````yaml GET /projects/jobs/{jobId}
openapi: 3.1.0
info:
  title: Faces API
  version: '1.0'
  description: >-
    Faces API for creating and managing presentations. Generate presentations
    from prompts, or read and write individual slides. Each slide is a React
    component (face.tsx) with content blocks (face.content.json) and editor
    controls (face.controls.json).
servers:
  - url: https://faces.app/api/v1
    description: API v1
security:
  - bearerAuth: []
paths:
  /projects/jobs/{jobId}:
    get:
      tags:
        - Projects
      summary: Get job status
      description: >-
        Check the status of a project generation job. Poll until status is
        completed or failed.
      operationId: getJobStatus
      parameters:
        - schema:
            type: string
            description: The job ID returned by generateProject.
          required: true
          name: jobId
          in: path
      responses:
        '200':
          description: Job status
          content:
            application/json:
              schema:
                type: object
                properties:
                  jobId:
                    type: string
                  status:
                    type: string
                    enum:
                      - processing
                      - completed
                      - failed
                  editorUrl:
                    type: string
                    format: uri
                  finalDuration:
                    type: string
                    description: >-
                      Actual generation time. Only present when status is
                      completed.
                    example: 45 seconds
                  publishedUrl:
                    type: string
                    format: uri
                    description: Available when status is completed.
                  error:
                    type: string
                    description: Error message when status is failed.
                  createdAt:
                    type: string
                    format: date-time
                required:
                  - jobId
                  - status
                  - createdAt
        '404':
          description: Job not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        hint:
          type: string
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key with "faces_" prefix. Create one at Settings > Developers.

````