Get scorecard by ID
curl --request GET \
--url https://api.stardex.ai/v1/scorecards/{id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "ddddeeee-1111-2222-3333-444444444444",
"person_id": "123e4567-e89b-12d3-a456-426614174000",
"job_id": "456e7890-e12b-34d5-a678-901234567890",
"candidate_id": "eeeeffff-1111-2222-3333-444444444444",
"assessment_template_id": "aaaa1111-2222-3333-4444-555555555555",
"template": {
"id": "aaaa1111-2222-3333-4444-555555555555",
"name": "Senior Backend Engineer Scorecard",
"rating_scale": 5
},
"job": {
"id": "456e7890-e12b-34d5-a678-901234567890",
"title": "Senior Backend Engineer",
"company_name": "Acme Inc."
},
"created_by": {
"id": "567e8901-e23c-45d6-e789-012345678901",
"first_name": "Jane",
"last_name": "Smith"
},
"overall_rating": 4.5,
"overall_comment": "Strong systems-design depth and excellent async collaboration. Recommend moving forward.",
"is_starred": true,
"visible_in_client_share_link": false,
"criterion_ratings": [
{
"id": "cc11aa22-3333-4444-5555-666666666666",
"criterion_id": "bbbb1111-2222-3333-4444-555555555555",
"criterion_name": "System design depth",
"importance": "must_have",
"position": 1,
"rating": 5,
"comment": "Designed a multi-region payments service with clear failure-mode reasoning."
},
{
"id": "cc11aa22-3333-4444-5555-777777777777",
"criterion_id": "cccc1111-2222-3333-4444-555555555555",
"criterion_name": "Async collaboration",
"importance": "nice_to_have",
"position": 2,
"rating": 4,
"comment": "Strong written communication; decision log was thorough."
}
],
"created_at": "2026-06-01T10:00:00Z",
"updated_at": "2026-06-01T10:00:00Z"
}
}Scorecards
Get scorecard by ID
Retrieve a single scorecard by its UUID, including criterion ratings (sorted by criterion position), embedded template, job, and creator.
GET
/
v1
/
scorecards
/
{id}
Get scorecard by ID
curl --request GET \
--url https://api.stardex.ai/v1/scorecards/{id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "ddddeeee-1111-2222-3333-444444444444",
"person_id": "123e4567-e89b-12d3-a456-426614174000",
"job_id": "456e7890-e12b-34d5-a678-901234567890",
"candidate_id": "eeeeffff-1111-2222-3333-444444444444",
"assessment_template_id": "aaaa1111-2222-3333-4444-555555555555",
"template": {
"id": "aaaa1111-2222-3333-4444-555555555555",
"name": "Senior Backend Engineer Scorecard",
"rating_scale": 5
},
"job": {
"id": "456e7890-e12b-34d5-a678-901234567890",
"title": "Senior Backend Engineer",
"company_name": "Acme Inc."
},
"created_by": {
"id": "567e8901-e23c-45d6-e789-012345678901",
"first_name": "Jane",
"last_name": "Smith"
},
"overall_rating": 4.5,
"overall_comment": "Strong systems-design depth and excellent async collaboration. Recommend moving forward.",
"is_starred": true,
"visible_in_client_share_link": false,
"criterion_ratings": [
{
"id": "cc11aa22-3333-4444-5555-666666666666",
"criterion_id": "bbbb1111-2222-3333-4444-555555555555",
"criterion_name": "System design depth",
"importance": "must_have",
"position": 1,
"rating": 5,
"comment": "Designed a multi-region payments service with clear failure-mode reasoning."
},
{
"id": "cc11aa22-3333-4444-5555-777777777777",
"criterion_id": "cccc1111-2222-3333-4444-555555555555",
"criterion_name": "Async collaboration",
"importance": "nice_to_have",
"position": 2,
"rating": 4,
"comment": "Strong written communication; decision log was thorough."
}
],
"created_at": "2026-06-01T10:00:00Z",
"updated_at": "2026-06-01T10:00:00Z"
}
}Was this page helpful?
⌘I