{
  "openapi": "3.0.0",
  "info": {
    "title": "微博用户视频列表 API (V1)",
    "version": "1.0.0",
    "description": "获取微博用户视频列表数据（瀑布流），包括下一页的分页游标。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/weibo/get-user-video-list/v1": {
      "get": {
        "tags": [
          "微博"
        ],
        "summary": "用户视频列表",
        "description": "获取微博用户视频列表数据（瀑布流），包括下一页的分页游标。",
        "operationId": "getUserVideoListV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "API 访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "uid",
            "in": "query",
            "description": "微博用户ID (UID)。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "description": "由先前响应返回的分页游标。",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "17001510"
      }
    }
  },
  "components": {}
}