curl --location --request POST 'https://api.figolabs.ai/api/v1/guardrails/check' \
--header 'Authorization: Bearer {Your-API-Key}' \
--header 'Content-Type: application/json' \
--data-raw '{
"bannedTopics": "government, politics",
"userInput": "what is the meaning of judiciary?"
}'
{
"responseCode": "00",
"responseMessage": "Successful",
"responseData": {
"isSafe": false
}
}