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": [
    {
      "base_model": "nugen-flash-instruct",
      "completed_date": "2024-01-15T12:45:00Z",
      "created_date": "2024-01-15T10:30:00Z",
      "creator": "user-xyz123",
      "document_count": 3,
      "documents": [
        "doc-abc123",
        "doc-def456",
        "doc-ghi789"
      ],
      "id": "alignment-abc123",
      "name": "Customer Support Model",
      "status": "COMPLETED"
    }
  ]
}

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

alignment_projects
AlignmentProject · object[]
required

List of alignment projects

Example:
[
{
"base_model": "nugen-flash-instruct",
"completed_date": "2024-01-15T12:45:00Z",
"created_date": "2024-01-15T10:30:00Z",
"creator": "user-xyz123",
"document_count": 3,
"documents": ["doc-abc123", "doc-def456", "doc-ghi789"],
"id": "alignment-abc123",
"name": "Customer Support Model",
"status": "COMPLETED"
}
]