Get invitation status
curl --request GET \
--url https://assess.praxicraft.com/api/v1/public/invites/{token}/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://assess.praxicraft.com/api/v1/public/invites/{token}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://assess.praxicraft.com/api/v1/public/invites/{token}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/invites/{token}/';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/invites/{token}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"invite_token": "8e909a4f-aa4c-40cb-9623-485d2879cb3b",
"email": "[email protected]",
"name": "Jane Doe",
"role": "Senior Backend Engineer",
"status": "started",
"external_id": "gh_cand_123",
"assessment": {
"slug": "senior-backend-screen",
"title": "Senior Backend Engineer Screen"
},
"created_at": "2025-03-15T09:00:00Z",
"expires_at": "2025-03-22T09:00:00Z",
"started_at": "2025-03-15T14:00:00Z",
"completed_at": null,
"reminded_at": null
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Public API — Invitations
Get invitation status
Required scope:
invitations:read
Returns invitation metadata and lifecycle timestamps without the full scored result. Use GET /invites/{token}/result/ once the candidate has completed the assessment.
Responses
| Status | When |
|---|---|
200 | Invitation detail including nested assessment { slug, title } |
404 | Invitation token not found |
Authentication & rate limits (all endpoints)
| Status | Code | When |
|---|---|---|
401 | INVALID_API_KEY | Missing or invalid bearer token |
401 | EXPIRED_API_KEY | API key past its optional expires_at |
403 | INSUFFICIENT_SCOPE | API key lacks the required scope for this operation |
403 | IP_NOT_ALLOWED | Client IP is outside this key’s CIDR allowlist |
429 | RATE_LIMITED | Rate limit exceeded — plan-tiered reads/writes per organisation per hour |
GET
/
api
/
v1
/
public
/
invites
/
{token}
/
Get invitation status
curl --request GET \
--url https://assess.praxicraft.com/api/v1/public/invites/{token}/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://assess.praxicraft.com/api/v1/public/invites/{token}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://assess.praxicraft.com/api/v1/public/invites/{token}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://assess.praxicraft.com/api/v1/public/invites/{token}/';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://assess.praxicraft.com/api/v1/public/invites/{token}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"invite_token": "8e909a4f-aa4c-40cb-9623-485d2879cb3b",
"email": "[email protected]",
"name": "Jane Doe",
"role": "Senior Backend Engineer",
"status": "started",
"external_id": "gh_cand_123",
"assessment": {
"slug": "senior-backend-screen",
"title": "Senior Backend Engineer Screen"
},
"created_at": "2025-03-15T09:00:00Z",
"expires_at": "2025-03-22T09:00:00Z",
"started_at": "2025-03-15T14:00:00Z",
"completed_at": null,
"reminded_at": null
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": {}
}
}Authorizations
Organisation API key created in Assess → Developer → API Keys. Format: Bearer ct_live_<your-key> (live) or Bearer ct_test_<your-key> (test). Optional per-key CIDR allowlists return 403 IP_NOT_ALLOWED.
Path Parameters
Response
Show child attributes
Show child attributes
Last modified on September 5, 2026