/v1/user
A member's recent posts
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/microblog-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/microblog-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/microblog-api/v1/user");
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/user",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 25,
"posts": [
{
"id": "92107305",
"url": "https://www.manton.org/2026/06/13/great-blog-post-by-nikita.html",
"rank": 1,
"text": "Great blog post by Nikita Prokopov about imperfection in the in-between state of animated transitions. The most polished apps usually sweat these little details. Hard to do, and my own apps often fall short here.",
"author": {
"url": "https://manton.org",
"name": "Manton Reece",
"avatar": "https://cdn.micro.blog/photos/96/https%3A%2F%2Favatars.micro.blog%2Favatars%2F2025%2F22%2F3.jpg",
"username": "manton.org"
},
"excerpt": "Great blog post by Nikita Prokopov about imperfection in the in-between state of animated transitions. The most polished apps usually sweat these little details. Hard to do, and my own apps often fall short here.",
"published": "2026-06-13T14:04:20+00:00",
"timestamp": 1781359460,
"is_mention": false,
"is_linkpost": false,
"is_conversation": false
},
{
"id": "92106993",
"url": "https://micro.blog/manton/92106993",
"rank": 2,
"text": "@hutaffe @philbowell Yeah, I think it’s partly that too, or a combination of things. This feels a little chaotic and maybe a turning point where the AI companies lose control of the narrative.",
"author": {
"url": "https://manton.org",
"name": "Manton Reece",
"avatar": "https://cdn.micro.blog/photos/96/https%3A%2F%2Favatars.micro.blog%2Favatars%2F2025%2F22%2F3.jpg",
"username": "manton.org"
},
"excerpt": "@hutaffe @philbowell Yeah, I think it’s partly that too, or a combination of things. This feels a little chaotic and maybe a turning point where the AI companies lose control of the narrative.",
"published": "2026-06-13T13:58:27+00:00",
"timestamp": 1781359107,
"is_mention": true,
"is_linkpost": false,
"is_conversation": true
},
{
"id": "92081681",
"url": "https://www.manton.org/2026/06/12/anthropic-is-disabling-fable-and.html",
"rank": 3,
"text": "Anthropic is disabling Fable and Mythos at the request of the US government. I don’t think this is “our model is so good you can’t have it” marketing, because Anthropic seems annoyed. They blog that there is confusion about the capability even compared to other models: We have reviewed a report that we believe is the basis of the government’s directive and validated that the level of capability displayed there is widely availabl
…