Tencent Selected API
1. Basic Call
TIP
The server will not record any of your requests or steal any of your privacy!
Base API URL
txt
https://zeapi.ink/v1/api/tencent_selected
Send a GET request directly to the following URL to retrieve Tencent selected data:
txt
https://zeapi.ink/v1/api/tencent_selected
Shell request code:
shell
curl -X GET https://zeapi.ink/v1/api/tencent_selected
2. Request Parameters
This API does not require additional request parameters; simply call it using a GET request.
3. JSON Response Format
Example of a successful response:
json
{
"name": "Tencent Selected",
"alias": "tencent_selected",
"data": [
{
"id": 1,
"title": "Selected Keyword 1",
"hotScore": 1234567,
"url": "https://new.qq.com/rain/a/Selected_Keyword_1",
"hotScoreFormatted": "123.5w"
},
{
"id": 2,
"title": "Selected Keyword 2",
"hotScore": 987654,
"url": "https://new.qq.com/rain/a/Selected_Keyword_2",
"hotScoreFormatted": "98.8w"
}
]
}
Example of an error response (data retrieval failed):
json
{
"error": "Failed to retrieve data"
}
4. Response Field Descriptions
Field | Type | Description |
---|---|---|
name | string | Title, fixed as "Tencent Selected" |
alias | string | Alias, fixed as "tencent_selected" |
data | array | List of selected items, containing multiple entries |
data.id | int | Selected item ranking |
data.title | string | Selected keyword |
data.hotScore | int | Raw popularity score of the selected item |
data.url | string | Web link to the selected keyword |
data.hotScoreFormatted | string | Formatted popularity score (in "ten thousands," rounded to 1 decimal place) |
error | string | Operation result message (returned only on error) |