/v1/magazines
Magazines: search or browse
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/mbin-api/v1/magazines" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mbin-api/v1/magazines", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mbin-api/v1/magazines");
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/magazines",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sort": "active",
"count": 25,
"query": null,
"magazines": [
{
"id": 12633,
"name": "[email protected]",
"ap_id": "[email protected]",
"posts": 0,
"title": "Announcements",
"entries": 0,
"is_adult": false,
"description": "[reserved]",
"subscribers": 65
},
{
"id": 14005,
"name": "[email protected]",
"ap_id": "[email protected]",
"posts": 0,
"title": "Year@2K Pics",
"entries": 0,
"is_adult": false,
"description": null,
"subscribers": 108
},
{
"id": 14450,
"name": "[email protected]",
"ap_id": "[email protected]",
"posts": 0,
"title": "Juno: New Origins",
"entries": 0,
"is_adult": false,
"description": "[On Steam](https://store.steampowered.com/app/870200/Juno_New_Origins/)",
"subscribers": 55
},
{
"id": 14676,
"name": "[email protected]",
"ap_id": "[email protected]",
"posts": 0,
"title": "iwanttolearn",
"entries": 0,
"is_adult": false,
"description": null,
"subscribers": 93
},
{
"id": 14714,
"name": "[email protected]",
"ap_id": "[email protected]",
"posts": 0,
"title": "Project Zomboid - K.C.R.A. ",
"entries": 0,
"is_adult": false,
"description": "Welcome to the Knox County Residents Association message board. \n\nFounded: July 2nd, 1993.\n\nAn unofficial fan community for the game **Project Zomboid** by The Indie Stone.\n\n___\n:::\n",
"subscribers": 121
},
{
"id": 14779,
"name": "[email protected]",
"ap_id": "[email protected]",
"posts": 0,
"title": "Philadelphia Flyers",
"entries": 0,
"is_adult": false,
"description": "Community for Philadelphia Flyers hockey news/information/discussion\n\nRules:\n- no spam\n- no non-flyers posts\n- Gritty is always welcome*** Upcoming Games: \n\n | Opponent | Time | \n | ---- | ---- | \n| Carolina Hurricanes | 2023-10-30 7:00p.m. Est/6:00 Cst + | \n| Buffalo Sabres | 2023-11-01 7:00p.m. Est/6:00 Cst + | \n| Buffalo Sabres | 2023-11-03 7:00p.m. Est/6:00 Cst + | \n| Los Angeles Kings | 2023-11-04 7:30p.m. Est/6:30 Cst + | \n",
"subscribers": 194
…