Skip to main content
GET
/
api
/
v3
/
alignment-project
List Alignment Projects
curl --request GET \
  --url https://api.nugen.in/api/v3/alignment-project \
  --header 'Authorization: Bearer <token>'
{
  "alignment_projects": [
    {
      "id": "<string>",
      "name": "<string>",
      "base_model": "<string>",
      "status": "pending",
      "created_date": "<string>",
      "documents": [
        "<string>"
      ],
      "document_count": 123,
      "creator": "<string>",
      "completed_date": "<string>",
      "performance_metrics": {
        "accuracy_before": 123,
        "accuracy_after": 123,
        "uncertainty_before": 123,
        "uncertainty_after": 123,
        "domain_violations_before": 123,
        "domain_violations_after": 123
      },
      "progress": 123,
      "estimated_completion": "<string>",
      "error": "<string>",
      "evaluation_id": "<string>",
      "model_id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Returns a list of all alignment projects for the authenticated user, including project metadata, status, training progress, associated documents, and evaluation results

Response schema for alignment projects listing - matches frontend DomainAlignmentProjects

alignment_projects
AlignmentProject · object[]
required

List of alignment projects