Skip to main content

Query Sensitive Words

Retrieve the list of sensitive words, supporting filtering by sensitive word types such as blocked sensitive words, replacement sensitive words, or all sensitive words.

Request Method

POST: https://Data Center Domain/sensitiveword/list.json

Rate Limit: 100 requests per second

Signature Rule: All server API requests require signature verification. For details, refer to API Request Signature.

Body Parameters

The HTTP request body data format is application/x-www-form-urlencoded, supporting the following HTTP form parameters:

ParameterTypeRequiredDescription
typeStringNoThe type of sensitive words to query. 0 for replacement sensitive words. 1 for blocked sensitive words. 2 for all sensitive words. Default is 1.

Request Example

POST /sensitiveword/list.json HTTP/1.1
Host: api.rong-api.com
App-Key: uwd1c0sxdlx2
Nonce: 14314
Timestamp: 1408710653491
Signature: 45beb7cc7307889a8e711219a47b7cf6a5b000e8
Content-Type: application/x-www-form-urlencoded

type=1

Response

The HTTP response body contains a JSON object with the following structure:

Return ValueTypeDescription
codeIntReturn code, 200 indicates success.
wordsArray of objectsList of sensitive words.
words[i].wordStringThe content of the sensitive word.
words[i].replaceWordStringThe replacement content for the sensitive word. If empty, the corresponding Word type is a blocked sensitive word.
words[i].typeStringThe type of the sensitive word. 0 for replacement sensitive words. 1 for blocked sensitive words.

Response Example

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
"code":200,
"words":[
{
"word":"money",
"replaceWord":"***",
"type":"0"
}
]
}