/v1/post
One post in full by author + permlink, with body text
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/hive-api/v1/post" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hive-api/v1/post", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hive-api/v1/post");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/hive-api/v1/post",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"url": "https://hive.blog/hive-163772/@sjarvie5/share-our-world-first-congregational-church-in-waterloo-iowa",
"tags": [
"shareourworld",
"travel",
"architecture",
"familyhistory",
"writing",
"iowa",
"pinmapple"
],
"title": "Share Our World: First Congregational Church in Waterloo, Iowa",
"votes": 1296,
"author": "sjarvie5",
"source": "Hive",
"created": "2026-06-12T20:58:39",
"excerpt": "This beautiful church is where my mother's parents got married 87 years ago. It is the First Congregational Church in Waterloo, Iowa. My grandparents were married on April 22, 1939 at noon. This picture was taken on April 22, 2026 at 11:39am. I planned my trip so I could be there exactly 87 years to",
"category": "hive-163772",
"comments": 4,
"permlink": "share-our-world-first-congregational-church-in-waterloo-iowa",
"body_text": "This beautiful church is where my mother's parents got married 87 years ago. It is the First Congregational Church in Waterloo, Iowa. My grandparents were married on April 22, 1939 at noon. This picture was taken on April 22, 2026 at 11:39am. I planned my trip so I could be there exactly 87 years to the day. I got a Bed and Breakfast close by and so passed the church each day I was in Waterloo. I was in Iowa doing research for a book I am writing about their honeymoon trip. | |-|-|-| This picture is from my grandparents wedding day coming out the same doors! | |-|-|-| On April 22nd I was able to go inside and see the beautiful stained glass windows with the afternoon light coming through. Views of the stained glass from the outside and inside. | |-|-|-| | |-|-|-| --------------------------------------------------------------------------------------------------------- The people at the church were very nice and happy to show me around. There is a day care that uses the church and a parking lot where my grandmas house used to be. One of the things I found most interesting is that my grandma lived right next to the church and there is a park across the street and my grandpa lived across the park and they didn't meet until two years before they were married. Here is a picture of me sitting in Washington park with my grandpa's house behind me facing the church. I really enjoyed going to the city of my ancestors and learning about them and going where they went and seeing what they saw. It was a special trip. [//]: (!worldmappin 42.491982 lat -92.344023 long First congregational church d3scr)",
"payout_hbd": 19.142
},
"meta": {
"timestamp": "2026-06-13T14:07:19.331Z",
"request_id": "6f0b7c36-19d7-4634-a150-5f33b82fc221"
},
"status": "ok",
"message": "Post retrieved successfully",
"success": true
}