> ## 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 Stop Alignment Status

> Check whether a previously issued stop request has been confirmed by the provider.

Poll this endpoint after calling `POST /{id}/stop`.  The status will remain
`PROCESSING` while the background worker is waiting for the provider to confirm,
and will change to `STOPPED` once confirmed.

**Returns:**
- `alignment_id`: ID of the alignment project
- `status`: Current status (`PROCESSING` while polling, `STOPPED` when confirmed)
- `job_id`: Provider-side training job ID



## OpenAPI

````yaml https://api.nugen.in/openapi-public.json get /api/v3/alignment-project/stop-status/{id}
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-project/stop-status/{id}:
    get:
      tags:
        - Alignment Project
      summary: Get Stop Alignment Status
      description: >-
        Check whether a previously issued stop request has been confirmed by the
        provider.


        Poll this endpoint after calling `POST /{id}/stop`.  The status will
        remain

        `PROCESSING` while the background worker is waiting for the provider to
        confirm,

        and will change to `STOPPED` once confirmed.


        **Returns:**

        - `alignment_id`: ID of the alignment project

        - `status`: Current status (`PROCESSING` while polling, `STOPPED` when
        confirmed)

        - `job_id`: Provider-side training job ID
      operationId: stop_alignment_status
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            title: Id
      responses:
        '200':
          description: Returns the current status of the alignment stop operation.
          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

````