API ReferenceEndpoints
Hiring Endpoints
Public and entity-scoped recruiting endpoints.
These endpoints power role discovery, applications, evaluations, and matching.
GET
/api/v1/hiring/rolescurl -H "Authorization: Bearer $TOKEN" https://api.sureshake.com/api/v1/hiring/roles
const response = await fetch('https://api.sureshake.com/api/v1/hiring/roles', {
headers: { Authorization: `Bearer ${token}` },
});
const roles = await response.json();Typical capabilities include:
- Search published roles.
- Submit candidate applications.
- List and review applications for an entity.
- Record evaluation outcomes.