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:
Parameter | Type | Required | Description |
---|---|---|---|
type | String | No | The 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 Value | Type | Description |
---|---|---|
code | Int | Return code, 200 indicates success. |
words | Array of objects | List of sensitive words. |
words[i].word | String | The content of the sensitive word. |
words[i].replaceWord | String | The replacement content for the sensitive word. If empty, the corresponding Word type is a blocked sensitive word. |
words[i].type | String | The 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"
}
]
}