GET
/
evaluator
/
v1
/
evaluation-data
/
random
curl --request GET \
  --url https://api.aceaicompany.com/evaluator/v1/evaluation-data/random \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "task": "<string>",
  "tags": [
    "<string>"
  ],
  "descriptionTitle": "<string>",
  "descriptionBody": "<string>",
  "impact": "<string>",
  "severity": "<string>",
  "bounty": 123,
  "status": "<string>",
  "data": {},
  "rating": 123,
  "bucket": "<string>",
  "file": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "evaluator": "<string>",
  "expertise": [
    "<string>"
  ]
}

Purpose: Retrieves a random evaluation data entry based on the evaluator’s username.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

username
string
required

Evaluator's username used to fetch a random evaluation data entry.

Response

200
application/json
Random evaluation data retrieved successfully.

Details of an evaluation data entry.

id
integer
name
string
task
string
tags
string[]
descriptionTitle
string
descriptionBody
string
impact
string
severity
string
bounty
integer
status
string
data
object
rating
integer
bucket
string | null
file
string | null
createdAt
string
evaluator
string | null
expertise
string[]