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

# Get job by job ID

> Returns the full job object as saved in the database by the job ID. If the job is not found, an error response is returned.



## OpenAPI

````yaml get /job/{job_id}/
openapi: 3.0.3
info:
  title: Letraz Backend Server
  version: 0.1.0
  description: >-
    This is the backend service repository of Letraz. Create tailored resumes
    for every job application effortlessly with Letraz. Our AI-powered tool
    helps you stand out by automatically optimizing your resume for ATS and
    recruiters, ensuring your skills and experience match the job's
    requirements.
servers:
  - url: https://api.letraz.app/api/v1
    description: Production Server
  - url: http://localhost:8000/api/v1
    description: Local Development Server
security: []
tags:
  - name: Core APIs
    description: Core APIs for Letraz Backend
  - name: Waitlist
    description: >-
      Mange waitlist, signups, retrieve waitlist and everything related to
      waitlist
  - name: User
    description: Get or update user details of currently logged in user
  - name: Job object
    description: >-
      Manage job objects, retrieve job objects and everything related to job
      objects
  - name: Resume object
    description: >-
      Manage resume objects, retrieve resume objects and everything related to
      resume objects
  - name: Education object
    description: >-
      Manage education objects, retrieve education objects and everything
      related to education objects
  - name: Experience object
    description: >-
      Manage experience objects, retrieve experience objects and everything
      related to experience objects
paths:
  /job/{job_id}/:
    get:
      tags:
        - Job object
      summary: Get job by job ID
      description: >-
        Returns the full job object as saved in the database by the job ID. If
        the job is not found, an error response is returned.
      operationId: job_retrieve
      parameters:
        - in: path
          name: job_id
          schema:
            type: string
          description: The Job ID
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobFull'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: ''
      security:
        - basicAuth: []
        - cookieAuth: []
        - cookieAuth: []
        - {}
components:
  schemas:
    JobFull:
      type: object
      properties:
        id:
          type: string
          readOnly: true
          description: The unique identifier for the job entry.
        job_url:
          type: string
          nullable: true
          description: The URL of the job posting. (optional)
          maxLength: 1000
        title:
          type: string
          description: >-
            The title of the job as mentioned in the job posting. If not
            available, a meaningful title would be auto-generated.
          maxLength: 250
        company_name:
          type: string
          description: The name of the company that posted the job.
          maxLength: 250
        location:
          type: string
          nullable: true
          description: The location of the job as mentioned in the job posting. (optional)
          maxLength: 100
        salary:
          type: string
          readOnly: true
        requirements:
          nullable: true
          description: >-
            An array representation of the requirements of the job as mentioned
            in the job posting. (optional)
        description:
          type: string
          nullable: true
          description: >-
            The description of the job as mentioned in the job posting.
            (optional)
          maxLength: 3000
        responsibilities:
          nullable: true
          description: >-
            An array representation of the responsibilities the candidate would
            be undertaking as mentioned in the job posting. (optional)
        benefits:
          nullable: true
          description: >-
            An array representation of the benefits the candidate would get as
            mentioned in the job posting. (optional)
        status:
          type: string
          readOnly: true
      required:
        - company_name
        - id
        - salary
        - status
        - title
    ErrorEnvelope:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/Error'
      required:
        - error
    Error:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
          description: >-
            The unique identifier for the error response. This is useful for
            tracking the error in the logs and in Sentry if it is enabled.
        code:
          type: string
          description: >-
            The error code that is unique to the error type. This can be used to
            identify the error type and can be used for debugging.
        message:
          type: string
          description: >-
            The error message that is human readable and can be used to
            understand the error. Usually fit to be displayed to the user.
        details:
          type: string
          description: >-
            The error details that can be used to understand the error in more
            detail. This can be used for debugging purposes.
        extra:
          type: string
          description: >-
            The extra data that can be used to understand the error in more
            detail. This is usually not displayed to the user and might include
            stacktrace and sensitive information.
      required:
        - code
        - details
        - extra
        - message
        - uuid
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    cookieAuth:
      type: apiKey
      in: cookie
      name: sessionid

````