Lab
Get Lab result (interactive lab)
Get result of a single user for a given interactive lab
Authentication with the “FERMION-API-KEY” header is required to use this endpoint.
Rate limit: Maximum 60 requests in a window of 1m.
POST
/
public
/
get-user-lab-result
Copy
curl --request POST \
--url https://backend.codedamn.com/api/public/get-user-lab-result \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {
"userId": "<string>",
"labId": "<string>"
}
}
]
}'
Copy
[
{
"output": {
"status": "ok",
"data": {
"challengeResult": {
"isLabAttempted": true,
"result": [
{
"challengeId": "<string>",
"isChallengePassed": true,
"challengeLabel": "<string>"
}
]
}
}
}
}
]
Authorizations
Body
application/json
API Request Body
Response
200 - application/json
API Response Body
Copy
curl --request POST \
--url https://backend.codedamn.com/api/public/get-user-lab-result \
--header 'Content-Type: application/json' \
--header 'FERMION-API-KEY: <api-key>' \
--data '{
"data": [
{
"data": {
"userId": "<string>",
"labId": "<string>"
}
}
]
}'
Copy
[
{
"output": {
"status": "ok",
"data": {
"challengeResult": {
"isLabAttempted": true,
"result": [
{
"challengeId": "<string>",
"isChallengePassed": true,
"challengeLabel": "<string>"
}
]
}
}
}
}
]
Assistant
Responses are generated using AI and may contain mistakes.