Ir al contenido
GET /v1/magazines

Magazines: search or browse

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/mbin-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
  
…