/v1/magazine-entries
The entries inside one magazine (community feed)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/mbin-api/v1/magazine-entries" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mbin-api/v1/magazine-entries", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mbin-api/v1/magazine-entries");
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/mbin-api/v1/magazine-entries",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"page": 1,
"sort": "hot",
"count": 25,
"entries": [
{
"id": 2824000,
"url": "https://www.windowslatest.com/2026/06/13/whatsapp-is-eating-1-2gb-ram-on-windows-11-even-as-microsoft-kills-web-app-slop/",
"lang": "en",
"type": "link",
"user": "@[email protected]",
"ap_id": "https://lemmy.today/post/54703948",
"is_oc": false,
"score": 98,
"title": "WhatsApp is the worst app on your Windows 11 PC right now, eating 1.2GB of RAM doing nothing",
"domain": "windowslatest.com",
"comments": 9,
"is_adult": false,
"magazine": "[email protected]",
"downvotes": 2,
"is_pinned": false,
"created_at": "2026-06-13T07:26:47+00:00"
},
{
"id": 2824920,
"url": "https://www.tomshardware.com/tech-industry/artificial-intelligence/ai-costs-spike-as-subscriptions-hit-pricing-wall-firms-turn-towards-chinese-llms-open-source-models-to-extend-budget",
"lang": "en",
"type": "link",
"user": "@[email protected]",
"ap_id": "https://lemmy.today/post/54716692",
"is_oc": false,
"score": 11,
"title": "AI costs spike as subscriptions hit pricing wall; firms turn towards Chinese LLMs, open-source models to extend budget",
"domain": "tomshardware.com",
"comments": 2,
"is_adult": false,
"magazine": "[email protected]",
"downvotes": 0,
"is_pinned": false,
"created_at": "2026-06-13T13:20:39+00:00"
},
{
"id": 2823077,
"url": "https://www.digitalfoundry.net/news/2026/06/latest-steam-hardware-survey-shows-amd-radeon-at-new-19percent-high-9060-xt-and-9070-xt-chart-for-first-time",
"lang": "en",
"type": "link",
"user": "@[email protected]",
"ap_id": "https://lemmy.today/post/54693455",
"is_oc": false,
"score": 57,
"title": "Latest Steam Hardware Survey Shows AMD Radeon at New 19% High, 9060 XT and 9070 XT Chart for First Time",
"domain": "digitalfoundry.net",
"comments": 1,
"is_adult": false,
"magazine": "[email protected]",
"downvotes": 0,
"is_pinned": false,
"created_at": "2026-06-13T01:37:40+00:00"
},
{
"id": 2822803,
"url": "https://videocardz.com/newz/nvidia-now-lists-rtx-pro-6000-blackwell-96gb-gpu-at-13250",
"lang": "en",
…