← 语言与诗歌

随机诗歌

GET /poetry/random

从 PoetryDB 经典英语诗歌集中获取一首随机诗歌。返回诗歌标题、作者、全文(按行)和行数。收录 Shakespeare、Dickinson、Keats、Poe、Whitman 等人的作品。

查看可视化效果

请求示例

基本用法
curl https://nordapi.ee/api/v1/poetry/random

实时响应

{
  "data": {
    "author": "John Milton",
    "line_count": "10",
    "lines": [
      "Now the bright morning Star, Dayes harbinger,",
      "Comes dancing from the East, and leads with her",
      "The Flowry May, who from her green lap throws",
      "The yellow Cowslip, and the pale Primrose.",
      "Hail bounteous May that dost inspire",
      "Mirth and youth, and warm desire,",
      "Woods and Groves, are of thy dressing,",
      "Hill and Dale, doth boast thy blessing.",
      "Thus we salute thee with our early Song,",
      "And welcom thee, and wish thee long."
    ],
    "title": "Song On May Morning"
  },
  "success": true
}