{
  "openapi": "3.0.0",
  "info": {
    "title": "Zhihu User Articles API (V1)",
    "version": "1.0.0",
    "description": "Get Zhihu user Articles data, including article identifiers, titles, author context, engagement signals, publish metadata, and pagination fields for creator research and content monitoring."
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global (default)"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn (optional for Mainland China)"
    }
  ],
  "paths": {
    "/api/zhihu/get-user-articles/v1": {
      "get": {
        "tags": [
          "Zhihu"
        ],
        "summary": "User Articles",
        "description": "Get Zhihu user Articles data, including article identifiers, titles, author context, engagement signals, publish metadata, and pagination fields for creator research and content monitoring.",
        "operationId": "getApiZhihuGetUserArticlesV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "TOKEN",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "userUrlToken",
            "in": "query",
            "description": "Zhihu user URL token, such as the value in `zhihu.com/people/{userUrlToken}`.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Start offset, begins with 0.",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 0
            }
          },
          {
            "name": "sortType",
            "in": "query",
            "description": "Sorting criteria for user articles.\n\nAvailable Values:\n- `created`: Sort by publish time.\n- `voteups`: Sort by upvote count.",
            "required": false,
            "schema": {
              "type": "string",
              "default": "created",
              "description": "Zhihu user article sorting type.",
              "enum": [
                "created",
                "voteups"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "404",
                        "500",
                        "600",
                        "601",
                        "602"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "requestId": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "28001700",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}