GET /poetry/random
从 PoetryDB 经典英语诗歌集中获取一首随机诗歌。返回诗歌标题、作者、全文(按行)和行数。收录 Shakespeare、Dickinson、Keats、Poe、Whitman 等人的作品。
curl https://nordapi.ee/api/v1/poetry/random
{
"data": {
"author": "Percy Bysshe Shelley",
"line_count": "9",
"lines": [
"Serene in his unconquerable might",
"Endued[,] the Almighty King, his steadfast throne",
"Encompassed unapproachably with power",
"And darkness and deep solitude an awe",
"Stood like a black cloud on some aery cliff",
"Embosoming its lightning--in his sight",
"Unnumbered glorious spirits trembling stood",
"Like slaves before their Lord--prostrate around",
"Heaven's multitudes hymned everlasting praise."
],
"title": "Fragment: Pater Omnipotens"
},
"success": true
}