PoemWiki Open API
    • 数据导入接口使用指南
    • Genrate Access Token
      POST
    • Detect Language
      POST
    • Import Poem
      POST
    • Poem Search
      POST
    • Poem Details by FakeID
      GET
    • Author Search
      POST

      Author Search

      Testing Env
      https://poemwiki.zeabur.app/api/v1
      Testing Env
      https://poemwiki.zeabur.app/api/v1
      POST
      /author/search

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************
      Header Params

      Body Params text/plain
      Example
      Example:{ "keyword": "杨键" }

      Request Code Samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location 'https://poemwiki.zeabur.app/api/v1/author/search' \
      --header 'Accept: application/json' \
      --header 'Authorization: Bearer <token>' \
      --header 'Content-Type: text/plain' \
      --data '{
        "keyword": "杨键"
      }'

      Responses

      🟢200Success
      application/json
      Bodyapplication/json

      Examples
      {
          "data": {
              "authors": [
                  {
                      "url": "https://poemwiki.org/author/MjM0NjY2NjY2NjY1Nzg=",
                      "id": 242,
                      "label": "李白",
                      "wikidata_id": 7071,
                      "avatar_url": "https://poe-1254719278.cos.accelerate.myqcloud.com/avatar/a/MjM0NjY2NjY2NjY1Nzg=.webp",
                      "desc": "唐代诗人",
                      "source": "PoemWiki"
                  }
              ]
          },
          "message": "",
          "code": 0
      }
      Modified at 2026-05-03 19:45:49
      Previous
      Poem Details by FakeID
      Built with