Menu

List of Platform App

Usage Instructions

Retrieve the list of installable platform applications, supporting pagination with up to 100 items per page.

Request Instructions

POST /api/v1/app/list

Request Parameters

Parameter Type Required Description
page int No Request the page number. If not provided, it defaults to the first page.
pagesize int No Number of items per page. If not provided, it defaults to 10 items per page.

Request Example

json Copy
{
    "page": 1,
    "pagesize": 100
}

Response Example

json Copy
{
    "code": 200,
    "data": {
        "list": [
            {
                "id": "9Jp7o#0", // app_id
                "name": "TikTok",
                "pkg": "com.zhiliaoapp.musically",
                "version_list": [
                    {
                        "id": "9Jp7o#0", // app_version_id
                        "name": "33.0.3"
                    },
                    {
                        "id": "QYAoK#0",
                        "name": "37.6.3"
                    }
                ]
            }
        ],
        "page": 1,
        "pagesize": 10,
        "total": 1,
        "total_page": 1
    },
    "message": "Success"
}
Last modified: 2025-03-07Powered by