GET
/
api
/
v3
/
alignment-project
/
status
/
{id}
curl --request GET \
  --url https://api.nugen.in/api/v3/alignment-project/status/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "pending",
  "data": {
    "id": 123,
    "name": "<string>",
    "baseModel": "<string>",
    "status": "pending",
    "createdDate": "<string>",
    "completedDate": "<string>",
    "documents": [
      "<string>"
    ],
    "documentCount": 123,
    "creator": "<string>",
    "performanceMetrics": {
      "accuracyBefore": 123,
      "accuracyAfter": 123,
      "uncertaintyBefore": 123,
      "uncertaintyAfter": 123,
      "domainViolationsBefore": 123,
      "domainViolationsAfter": 123
    },
    "progress": 123,
    "estimatedCompletion": "<string>",
    "error": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Response

200
application/json

Successful Response

The response is of type object.