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

# Get application details

> Get full details about an application including candidate info, notes, feedback, and AI profile.



## OpenAPI

````yaml /docs/openapi.yaml get /applications/{id}
openapi: 3.1.0
info:
  title: Loam API
  description: >
    The Loam API allows you to programmatically manage your applicant tracking
    system.


    ## Authentication


    All API requests require a Bearer token in the Authorization header:


    ```

    Authorization: Bearer lk_your_api_key_here

    ```


    You can create API keys in your [Settings > API
    Keys](https://hireloam.com/settings/api-keys) page.


    ## Rate Limits


    API requests are rate limited to 1000 requests per hour per API key.

    Rate limit headers are included in all responses:


    - `X-RateLimit-Limit`: Maximum requests per hour

    - `X-RateLimit-Remaining`: Requests remaining in current window

    - `X-RateLimit-Reset`: Unix timestamp when the limit resets
  version: 1.0.0
  contact:
    name: Loam Support
    email: support@hireloam.com
servers:
  - url: https://hireloam.com/api/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Jobs
    description: Manage job postings
  - name: Applications
    description: Manage applications and candidates
  - name: Notes
    description: Add notes to applications
  - name: Feedback
    description: Add interview feedback
  - name: Candidates
    description: Manage candidate profiles
  - name: Search
    description: Search candidates
  - name: Sourcing
    description: Sourcing searches, prospects, and shortlists
paths:
  /applications/{id}:
    get:
      tags:
        - Applications
      summary: Get application details
      description: >-
        Get full details about an application including candidate info, notes,
        feedback, and AI profile.
      operationId: getApplication
      parameters:
        - name: id
          in: path
          required: true
          description: The application ID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Application details
          content:
            application/json:
              schema:
                type: object
                properties:
                  application:
                    $ref: '#/components/schemas/ApplicationDetail'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    ApplicationDetail:
      allOf:
        - $ref: '#/components/schemas/Application'
        - type: object
          properties:
            candidate:
              $ref: '#/components/schemas/CandidateDetail'
            job:
              type: object
              properties:
                id:
                  type: string
                title:
                  type: string
                department:
                  type: string
                  nullable: true
                location:
                  type: string
                  nullable: true
            ai_profiles:
              type: array
              items:
                type: object
                properties:
                  status:
                    type: string
                  summary:
                    type: string
                    nullable: true
                  extracted_json:
                    type: object
                    nullable: true
            notes:
              type: array
              items:
                $ref: '#/components/schemas/Note'
            interview_feedback:
              type: array
              items:
                $ref: '#/components/schemas/Feedback'
            attachments:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  file_type:
                    type: string
                  original_filename:
                    type: string
            application_answers:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  question_text:
                    type: string
                  answer_text:
                    type: string
    Application:
      type: object
      properties:
        id:
          type: string
          format: uuid
        stage_id:
          type: string
          format: uuid
        source_type:
          type: string
        created_at:
          type: string
          format: date-time
        candidate:
          $ref: '#/components/schemas/Candidate'
        stage:
          $ref: '#/components/schemas/Stage'
        job:
          type: object
          properties:
            id:
              type: string
              format: uuid
            title:
              type: string
    CandidateDetail:
      allOf:
        - $ref: '#/components/schemas/Candidate'
        - type: object
          properties:
            website_url:
              type: string
              nullable: true
            github_url:
              type: string
              nullable: true
            years_experience:
              type: integer
              nullable: true
            university:
              type: string
              nullable: true
    Note:
      type: object
      properties:
        id:
          type: string
          format: uuid
        body:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
          nullable: true
    Feedback:
      type: object
      properties:
        id:
          type: string
          format: uuid
        interview_type:
          type: string
        rating:
          type: string
          enum:
            - strong_yes
            - 'yes'
            - 'no'
            - strong_no
          nullable: true
        body:
          type: string
        created_at:
          type: string
          format: date-time
        submitted_at:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - invalid_request
                - unauthorized
                - forbidden
                - not_found
                - rate_limit_exceeded
                - internal_error
            message:
              type: string
            details:
              type: object
    Candidate:
      type: object
      properties:
        id:
          type: string
          format: uuid
        full_name:
          type: string
        primary_email:
          type: string
          format: email
          nullable: true
        linkedin_url:
          type: string
          format: uri
          nullable: true
    Stage:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        order_index:
          type: integer
  responses:
    Unauthorized:
      description: Unauthorized - missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: unauthorized
              message: Invalid or missing API key
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: not_found
              message: Application not found
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: internal_error
              message: An internal error occurred
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from Settings > API Keys

````