POST
/
genAI
/
v1
/
perform
curl --request POST \
  --url https://api.aceaicompany.com/genAI/v1/perform \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "prompt": "<string>"
}'
{
  "results": "<string>"
}

Purpose: Sends a custom prompt to perform a specific task using GenAI capabilities.

Authorizations

Authorization
string
header
required

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

Body

application/json

Evaluation parameters, specifically the prompt used to instruct the model or AI system.

The body is of type object.

Response

200
application/json

Evaluation successful, results returned.

The response is of type object.