/v1/conversation
The reply thread for a post
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/microblog-api/v1/conversation" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/microblog-api/v1/conversation", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/microblog-api/v1/conversation");
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/microblog-api/v1/conversation",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": "92050025",
"count": 3,
"source": "Micro.blog",
"replies": [
{
"id": "92054328",
"url": "https://micro.blog/ayjay/92054328",
"rank": 1,
"text": "@frjonjordan Well, it’s been a few years since I’ve been in Rome, but I don’t recall seeing such things….",
"author": {
"url": "https://ayjay.org",
"name": "Alan Jacobs ",
"avatar": "https://cdn.micro.blog/photos/96/https%3A%2F%2Favatars.micro.blog%2Favatars%2F2022%2F650.jpg",
"username": "ayjay.org"
},
"excerpt": "@frjonjordan Well, it’s been a few years since I’ve been in Rome, but I don’t recall seeing such things….",
"published": "2026-06-12T17:25:51+00:00",
"timestamp": 1781285151,
"is_mention": true,
"is_linkpost": false,
"is_conversation": true
},
{
"id": "92051588",
"url": "https://micro.blog/frjonjordan/92051588",
"rank": 2,
"text": "@ayjay I have been in Rome on a school and then family trip for the past couple of weeks. Reading this in that context has me envisioning men in red robes feeding nuns.",
"author": {
"url": "http://jonjordan.com",
"name": "Jon Jordan",
"avatar": "https://cdn.micro.blog/photos/96/https%3A%2F%2Favatars.micro.blog%2Favatars%2F2025%2F49%2F10137.jpg",
"username": "jonjordan.com"
},
"excerpt": "@ayjay I have been in Rome on a school and then family trip for the past couple of weeks. Reading this in that context has me envisioning men in red robes feeding nuns.",
"published": "2026-06-12T16:56:22+00:00",
"timestamp": 1781283382,
"is_mention": true,
"is_linkpost": false,
"is_conversation": true
},
{
"id": "92050025",
"url": "https://social.ayjay.org/2026/06/12/i-love-watching-our-male.html",
"rank": 3,
"text": "I love watching our male cardinals fetch seeds and suet from our feeder and bring them to their lady friends, who wait patiently and decorously. Such chivalrous young men; such appreciative young women.",
"author": {
"url": "https://ayjay.org",
"name": "Alan Jacobs ",
"avatar": "https://cdn.micro.blog/photos/96/https%3A%2F%2Favatars.micro.blog%2Favatars%2F2022%2F650.jpg",
"username": "ayjay.org"
},
"excerpt": "I love watching our male cardinals fetch seeds and suet from our feeder and bring them to their lady friends, who wait patien
…