Analytics

Analytics and performance metrics

Get Project Performance Metrics

post
/performance/{projectId}

Retrieves performance statistics and metrics for a project

Authorizations
Path parameters
projectIdstringRequired

Project ID

Body
startDatestring · date-timeOptional
endDatestring · date-timeOptional
usersstring[]Optional
Responses
200

Performance metrics retrieved successfully

application/json
post
/performance/{projectId}
POST /v2/performance/{projectId} HTTP/1.1
Host: imeritapi.ango.ai
apikey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 94

{
  "startDate": "2025-10-27T16:48:12.528Z",
  "endDate": "2025-10-27T16:48:12.528Z",
  "users": [
    "text"
  ]
}
200

Performance metrics retrieved successfully

{
  "status": "success",
  "data": {
    "performance": {}
  }
}

Retrieve Project Overview

get
/{projectId}/overview/{type}

Retrieves various analytics and overview metrics for a project.

Available types:

  • AssetSize: Total size of all assets

  • LabelStageGroups: Task count by stage

  • AverageDurationPerStage: Average time spent per stage

  • TimePerTask: Time distribution across tasks

  • AnnotationStatus: Annotation completion status

  • AnswerDistribution: Distribution of answers

  • ConsensusRanges: Consensus score ranges

Authorizations
Path parameters
projectIdstringRequired

Project ID

typestring · enumRequired

Overview type

Possible values:
Query parameters
startDatestring · date-timeOptional

Start date (ISO 8601)

endDatestring · date-timeOptional

End date (ISO 8601)

usersstringOptional

Filter by users (comma-separated emails)

batchesstringOptional

Filter by batches (comma-separated)

Responses
200

Overview retrieved successfully

application/json
get
/{projectId}/overview/{type}
GET /v2/{projectId}/overview/{type} HTTP/1.1
Host: imeritapi.ango.ai
apikey: YOUR_API_KEY
Accept: */*
200

Overview retrieved successfully

{
  "status": "success",
  "data": {
    "overview": {}
  }
}

Last updated