{
  "openapi": "3.0.0",
  "info": {
    "title": "Weibo Search User Published Posts API (V1)",
    "version": "1.0.0",
    "description": "Get Weibo search User Published Posts data, including matched results, metadata, and ranking signals, for author research and historical content discovery."
  },
  "paths": {
    "/api/weibo/search-profile/v1": {
      "get": {
        "tags": [
          "Weibo"
        ],
        "summary": "Search User Published Posts",
        "description": "Get Weibo search User Published Posts data, including matched results, metadata, and ranking signals, for author research and historical content discovery.",
        "operationId": "searchProfileV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "API access token.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "uid",
            "in": "query",
            "description": "Weibo User ID (UID).",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "q",
            "in": "query",
            "description": "Search Keywords.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "startDay",
            "in": "query",
            "description": "Start Day (yyyy-MM-dd).",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDay",
            "in": "query",
            "description": "End Day (yyyy-MM-dd).",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "Page number, starting with 1.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {}
            }
          }
        },
        "x-order": "17001900"
      }
    }
  },
  "components": {}
}