curl --request POST \
--url https://api.stardex.ai/v1/scorecard-templates/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"offset": 0,
"limit": 100,
"keywords": [
"<string>"
],
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"include_org_wide": false,
"created_by_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"is_archived": false,
"sort_by": "created_at",
"sort_order": "desc"
}
'import requests
url = "https://api.stardex.ai/v1/scorecard-templates/search"
payload = {
"offset": 0,
"limit": 100,
"keywords": ["<string>"],
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"include_org_wide": False,
"created_by_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"is_archived": False,
"sort_by": "created_at",
"sort_order": "desc"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
offset: 0,
limit: 100,
keywords: ['<string>'],
job_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
include_org_wide: false,
created_by_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
is_archived: false,
sort_by: 'created_at',
sort_order: 'desc'
})
};
fetch('https://api.stardex.ai/v1/scorecard-templates/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v1/scorecard-templates/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'offset' => 0,
'limit' => 100,
'keywords' => [
'<string>'
],
'job_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'include_org_wide' => false,
'created_by_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'is_archived' => false,
'sort_by' => 'created_at',
'sort_order' => 'desc'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v1/scorecard-templates/search"
payload := strings.NewReader("{\n \"offset\": 0,\n \"limit\": 100,\n \"keywords\": [\n \"<string>\"\n ],\n \"job_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"include_org_wide\": false,\n \"created_by_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"is_archived\": false,\n \"sort_by\": \"created_at\",\n \"sort_order\": \"desc\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.stardex.ai/v1/scorecard-templates/search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"offset\": 0,\n \"limit\": 100,\n \"keywords\": [\n \"<string>\"\n ],\n \"job_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"include_org_wide\": false,\n \"created_by_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"is_archived\": false,\n \"sort_by\": \"created_at\",\n \"sort_order\": \"desc\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/scorecard-templates/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"offset\": 0,\n \"limit\": 100,\n \"keywords\": [\n \"<string>\"\n ],\n \"job_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"include_org_wide\": false,\n \"created_by_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"is_archived\": false,\n \"sort_by\": \"created_at\",\n \"sort_order\": \"desc\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "aaaa1111-2222-3333-4444-555555555555",
"name": "Senior Backend Engineer Scorecard",
"description": "Interview rubric for senior backend engineering candidates.",
"job_id": "456e7890-e12b-34d5-a678-901234567890",
"rating_scale": 5,
"enable_ai_auto_grade": false,
"is_archived": false,
"overall_default_text": "Summarize the candidate against the must-have criteria first, then list any concerns.",
"created_by": {
"id": "567e8901-e23c-45d6-e789-012345678901",
"first_name": "Jane",
"last_name": "Smith"
},
"created_at": "2026-05-20T10:00:00Z",
"updated_at": "2026-05-20T10:00:00Z",
"criteria": [
{
"id": "bbbb1111-2222-3333-4444-555555555555",
"name": "System design depth",
"description": "Can the candidate reason about consistency, partitioning, and failure modes for a multi-region service?",
"importance": "must_have",
"position": 1,
"is_archived": false,
"default_text": "Note specific systems they have built, scale handled, and trade-offs discussed."
},
{
"id": "cccc1111-2222-3333-4444-555555555555",
"name": "Async collaboration",
"description": "Quality of written communication and decision logs.",
"importance": "nice_to_have",
"position": 2,
"is_archived": false,
"default_text": null
}
]
}
],
"meta": {
"total": 1,
"offset": 0,
"limit": 100
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Search scorecard templates
Search and filter scorecard templates (the assessment rubrics used to score candidates) with pagination and sorting.
Filters: keywords (substring match on name or description), job_id (return templates scoped to a specific job — pair with include_org_wide to also include org-wide templates), created_by_ids (team members who created the template), is_archived (defaults to false).
Sorting: sort_by — created_at (default), updated_at, or name. sort_order — asc or desc (default).
Pagination: offset and limit (max 100).
curl --request POST \
--url https://api.stardex.ai/v1/scorecard-templates/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"offset": 0,
"limit": 100,
"keywords": [
"<string>"
],
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"include_org_wide": false,
"created_by_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"is_archived": false,
"sort_by": "created_at",
"sort_order": "desc"
}
'import requests
url = "https://api.stardex.ai/v1/scorecard-templates/search"
payload = {
"offset": 0,
"limit": 100,
"keywords": ["<string>"],
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"include_org_wide": False,
"created_by_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"is_archived": False,
"sort_by": "created_at",
"sort_order": "desc"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
offset: 0,
limit: 100,
keywords: ['<string>'],
job_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
include_org_wide: false,
created_by_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
is_archived: false,
sort_by: 'created_at',
sort_order: 'desc'
})
};
fetch('https://api.stardex.ai/v1/scorecard-templates/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v1/scorecard-templates/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'offset' => 0,
'limit' => 100,
'keywords' => [
'<string>'
],
'job_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'include_org_wide' => false,
'created_by_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'is_archived' => false,
'sort_by' => 'created_at',
'sort_order' => 'desc'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v1/scorecard-templates/search"
payload := strings.NewReader("{\n \"offset\": 0,\n \"limit\": 100,\n \"keywords\": [\n \"<string>\"\n ],\n \"job_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"include_org_wide\": false,\n \"created_by_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"is_archived\": false,\n \"sort_by\": \"created_at\",\n \"sort_order\": \"desc\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.stardex.ai/v1/scorecard-templates/search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"offset\": 0,\n \"limit\": 100,\n \"keywords\": [\n \"<string>\"\n ],\n \"job_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"include_org_wide\": false,\n \"created_by_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"is_archived\": false,\n \"sort_by\": \"created_at\",\n \"sort_order\": \"desc\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/scorecard-templates/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"offset\": 0,\n \"limit\": 100,\n \"keywords\": [\n \"<string>\"\n ],\n \"job_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"include_org_wide\": false,\n \"created_by_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"is_archived\": false,\n \"sort_by\": \"created_at\",\n \"sort_order\": \"desc\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "aaaa1111-2222-3333-4444-555555555555",
"name": "Senior Backend Engineer Scorecard",
"description": "Interview rubric for senior backend engineering candidates.",
"job_id": "456e7890-e12b-34d5-a678-901234567890",
"rating_scale": 5,
"enable_ai_auto_grade": false,
"is_archived": false,
"overall_default_text": "Summarize the candidate against the must-have criteria first, then list any concerns.",
"created_by": {
"id": "567e8901-e23c-45d6-e789-012345678901",
"first_name": "Jane",
"last_name": "Smith"
},
"created_at": "2026-05-20T10:00:00Z",
"updated_at": "2026-05-20T10:00:00Z",
"criteria": [
{
"id": "bbbb1111-2222-3333-4444-555555555555",
"name": "System design depth",
"description": "Can the candidate reason about consistency, partitioning, and failure modes for a multi-region service?",
"importance": "must_have",
"position": 1,
"is_archived": false,
"default_text": "Note specific systems they have built, scale handled, and trade-offs discussed."
},
{
"id": "cccc1111-2222-3333-4444-555555555555",
"name": "Async collaboration",
"description": "Quality of written communication and decision logs.",
"importance": "nice_to_have",
"position": 2,
"is_archived": false,
"default_text": null
}
]
}
],
"meta": {
"total": 1,
"offset": 0,
"limit": 100
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Authorizations
Authenticate with a Bearer token: API key, OAuth token, or session token.
Body
Records to skip for pagination. Defaults to 0.
x >= 0Max records per page (1–100). Defaults to 100.
1 <= x <= 100Case-insensitive substring match on template name or description.
Return only templates scoped to this job UUID. Pair with include_org_wide to also include org-wide templates.
When true and job_id is provided, also return org-wide (job_id IS NULL) templates. Defaults to false.
Filter by creator team member UUIDs. Get IDs from GET /v1/team-members.
Filter by archived status. Defaults to false (active templates only).
Column to sort by. One of: created_at (default), updated_at, name.
created_at, updated_at, name Sort direction. Defaults to desc.
asc, desc Was this page helpful?