/v1/feed
A channel's recent posts with engagement
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/minds-api/v1/feed" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/minds-api/v1/feed", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/minds-api/v1/feed");
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/minds-api/v1/feed",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 12,
"posts": [
{
"url": "https://www.minds.com/newsfeed/1911292853681438720",
"guid": "1911292853681438720",
"owner": "ottman",
"title": null,
"message": "retrospective compression: the transformation of a complex process into a seemingly obvious turning point once the ending is known. It's one reason why history often appears to move in giant leaps even though it was usually experienced as a slow crawl.",
"reminds": 2,
"comments": 22,
"thumbs_up": 35,
"created_at": "2026-06-10T03:55:26.000Z",
"thumbs_down": 0
},
{
"url": "https://www.minds.com/newsfeed/1906760546045136896",
"guid": "1906760546045136896",
"owner": "ottman",
"title": null,
"message": "The Internet is currently in a pull to centralize with the temptation of AI and the amazing features it offers. \n\nDecentralized networks have always and will always struggle to compete. Private AI is much harder as well.\n\nDon't give up. Freedom requires patience and effort. ",
"reminds": 12,
"comments": 53,
"thumbs_up": 99,
"created_at": "2026-05-28T15:45:40.000Z",
"thumbs_down": 0
},
{
"url": "https://www.minds.com/newsfeed/1904672461790646272",
"guid": "1904672461790646272",
"owner": "ottman",
"title": null,
"message": "Read this\n\nhttps://www.war.gov/medialink/ufo/052226/release_02/documents/ODNI-UAP-D001_USPER_Narrative_Senior_USIC.pdf",
"reminds": 4,
"comments": 9,
"thumbs_up": 21,
"created_at": "2026-05-22T21:28:21.000Z",
"thumbs_down": 0
},
{
"url": "https://www.minds.com/newsfeed/1904559691325775872",
"guid": "1904559691325775872",
"owner": "ottman",
"title": null,
"message": null,
"reminds": 16,
"comments": 80,
"thumbs_up": 116,
"created_at": "2026-05-22T14:00:15.000Z",
"thumbs_down": 0
},
{
"url": "https://www.minds.com/newsfeed/1902868749443145728",
"guid": "1902868749443145728",
"owner": "ottman",
"title": null,
"message": "Goodwill is great but their stickers are evil. ",
"reminds": 3,
"comments": 11,
"thumbs_up": 25,
"created_at": "2026-05-17T22:01:03.000Z",
"thumbs_down": 0
},
{
"url": "https://www.minds.com/ne
…