curl --request GET \
--url https://api.stardex.ai/v1/custom-fields/jobs \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Seniority Level",
"description": "Candidate seniority classification",
"data_type": "single-select",
"tags": [
{
"id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
"name": "Junior",
"color": "#86efac",
"description": null
},
{
"id": "f2e3d4c5-b6a7-8901-bcde-f12345678901",
"name": "Mid",
"color": "#93c5fd",
"description": null
},
{
"id": "f3e4d5c6-b7a8-9012-cdef-g12345678902",
"name": "Senior",
"color": "#d8b4fe",
"description": null
}
]
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"name": "Tags",
"description": "General-purpose tags for categorization",
"data_type": "multi-select",
"tags": [
{
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"name": "Banking",
"color": "#fde68a",
"description": null
},
{
"id": "a2b3c4d5-2345-6789-0abc-def123456789",
"name": "Fintech",
"color": "#a5f3fc",
"description": null
},
{
"id": "a3b4c5d6-3456-7890-1abc-def234567890",
"name": "Referred",
"color": "#fca5a5",
"description": null
}
]
},
{
"id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"name": "Years of Experience",
"description": "Total years of professional experience",
"data_type": "integer",
"tags": []
},
{
"id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"name": "Available From",
"description": "Earliest start date",
"data_type": "date",
"tags": []
}
]
}Retrieve custom attribute definitions for jobs, including available tag options.
When to use: Call this to discover job-level attribute IDs needed when including custom_fields in job list/detail endpoints or sorting by custom_<attribute_id> in search results.
curl --request GET \
--url https://api.stardex.ai/v1/custom-fields/jobs \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Seniority Level",
"description": "Candidate seniority classification",
"data_type": "single-select",
"tags": [
{
"id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
"name": "Junior",
"color": "#86efac",
"description": null
},
{
"id": "f2e3d4c5-b6a7-8901-bcde-f12345678901",
"name": "Mid",
"color": "#93c5fd",
"description": null
},
{
"id": "f3e4d5c6-b7a8-9012-cdef-g12345678902",
"name": "Senior",
"color": "#d8b4fe",
"description": null
}
]
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"name": "Tags",
"description": "General-purpose tags for categorization",
"data_type": "multi-select",
"tags": [
{
"id": "a1b2c3d4-1234-5678-9abc-def012345678",
"name": "Banking",
"color": "#fde68a",
"description": null
},
{
"id": "a2b3c4d5-2345-6789-0abc-def123456789",
"name": "Fintech",
"color": "#a5f3fc",
"description": null
},
{
"id": "a3b4c5d6-3456-7890-1abc-def234567890",
"name": "Referred",
"color": "#fca5a5",
"description": null
}
]
},
{
"id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"name": "Years of Experience",
"description": "Total years of professional experience",
"data_type": "integer",
"tags": []
},
{
"id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"name": "Available From",
"description": "Earliest start date",
"data_type": "date",
"tags": []
}
]
}Was this page helpful?