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

# Get Alignment Project Status

> The polled status of one alignment project.

Returns the state and its qualifiers only. Configuration, documents and
metrics never change while a run executes, so they live on the detail
route and are not re-sent on every poll.



## OpenAPI

````yaml https://api.nugen.in/openapi-public.json get /api/v3/alignment-projects/{id}/status
openapi: 3.1.0
info:
  title: Nugen Intelligence API
  description: 'Nugen Intelligence : Powering Specialized Intelligence At Scale'
  version: 25.4.20
servers: []
security: []
paths:
  /api/v3/alignment-projects/{id}/status:
    get:
      tags:
        - General
      summary: Get Alignment Project Status
      description: |-
        The polled status of one alignment project.

        Returns the state and its qualifiers only. Configuration, documents and
        metrics never change while a run executes, so they live on the detail
        route and are not re-sent on every poll.
      operationId: alignment_projects_status
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````