Skip to content

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

FieldTypeDescription
namestringTitle, fixed as "Tencent Selected"
aliasstringAlias, fixed as "tencent_selected"
dataarrayList of selected items, containing multiple entries
data.idintSelected item ranking
data.titlestringSelected keyword
data.hotScoreintRaw popularity score of the selected item
data.urlstringWeb link to the selected keyword
data.hotScoreFormattedstringFormatted popularity score (in "ten thousands," rounded to 1 decimal place)
errorstringOperation result message (returned only on error)

Released under the MIT License.