Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Token URL: /api/v1/auth/login
or
Body Params application/jsonRequired
Request Code Samples
curl --location --request POST '/api/v1/banwords/check' \
--header 'Content-Type: application/json' \
--data-raw '{
"text": "string"
}'
Responses
{
"code": 0,
"message": "success",
"data": {
"property1": "string",
"property2": "string"
}
}
Modified at 2025-09-26 15:37:19