Getting an API key
Issue an API key to call the Pulsera Assess REST API from your own systems.
The REST API lets you generate codes, list submissions, and pull results from your own software. Available on Pro and Enterprise.
Issue a key
Go to Settings » API, click New API Key, name it (so you remember which integration it is for), and click Generate. Copy the key immediately - the full value is shown once. We store only a hash, so we cannot recover the key if you lose it.
Authentication
Pass the key as a Bearer token:
curl https://assess.pulseratalent.com/api/results \
-H "Authorization: Bearer YOUR_API_KEY"
Endpoints
GET /api/assessments- list your org's assessmentsPOST /api/codes- generate an access codeGET /api/codes- list codesGET /api/results- list submissionsGET /api/results?id=<id>- one submission with full detailPOST /api/webhooks- register a webhookGET /api/webhooks- list webhooksDELETE /api/webhooks?id=<id>- remove a webhook
Rate limits
120 requests per minute per key by default. Hit us with bursts; we do not penalize short spikes. Sustained over-limit requests get a 429.
Rotating a key
Generate a new key, deploy it, then revoke the old one. Revocation is immediate.