/v1/search
Search series by title
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/mangaupdates-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mangaupdates-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mangaupdates-api/v1/search");
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/mangaupdates-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "MangaUpdates series matching a title search — each with its series_id (use it with /v1/series for the full profile incl. latest chapter and ranks), title, type (manga/manhwa/manhua/novel), year and community rating. Pass q (required) and limit (1-40). Live, cached ~5m.",
"count": 15,
"query": "one piece",
"source": "MangaUpdates public v1 API (api.mangaupdates.com/v1/series/search), keyless",
"results": [
{
"url": "https://www.mangaupdates.com/series/pb8uwds/one-piece",
"type": "Manga",
"year": 1997,
"image": "https://cdn.mangaupdates.com/image/i517997.jpg",
"title": "One Piece",
"rating": 8.89,
"series_id": 55099564912
},
{
"url": "https://www.mangaupdates.com/series/g0me7cg/odekake-one-piece",
"type": "Manga",
"year": 2015,
"image": "https://cdn.mangaupdates.com/image/i239965.jpg",
"title": "Odekake One Piece",
"rating": null,
"series_id": 34866131632
},
{
"url": "https://www.mangaupdates.com/series/mqu6otf/one-piece-party",
"type": "Manga",
"year": 2014,
"image": "https://cdn.mangaupdates.com/image/i335811.jpg",
"title": "One Piece Party",
"rating": 6.32,
"series_id": 49512032547
},
{
"url": "https://www.mangaupdates.com/series/zmn067b/koisuru-one-piece",
"type": "Manga",
"year": 2018,
"image": "https://cdn.mangaupdates.com/image/i523110.jpg",
"title": "Koisuru One Piece",
"rating": 6.2,
"series_id": 77556276839
},
{
"url": "https://www.mangaupdates.com/series/vxewb8h/one-piece-dj-short-piece",
"type": "Doujinshi",
"year": 2009,
"image": "https://cdn.mangaupdates.com/image/i176424.jpg",
"title": "One Piece dj - Short Piece",
"rating": 6.22,
"series_id": 69500658401
},
{
"url": "https://www.mangaupdates.com/series/7c2mqvx/one-piece-gakuen",
"type": "Manga",
"year": 2019,
"image": "https://cdn.mangaupdates.com/image/i491207.jpg",
"title": "One Piece Gakuen",
"rating": 6.1,
"series_id": 15967490973
},
{
"url": "https://www.mangaupdates.com/series/mcgbgaw/boku-no-one-piece",
"type": "Manga",
"year": 2017,
"image": "https://cdn.mangaupdates.com/image/i395828.jpg",
"title": "Boku no One Piece",
…