/v1/meta
Service metadata
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/wallhaven-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wallhaven-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wallhaven-api/v1/meta");
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/wallhaven-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sorts": [
"favorites",
"views",
"date_added",
"relevance",
"toplist"
],
"source": "Wallhaven public API (live, SFW-only)",
"service": "wallhaven-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/search": "Search wallpapers (q=, category=general|anime|people|all, sort=favorites|views|date_added|relevance, page).",
"GET /v1/wallpaper": "A wallpaper's detail + engagement + tags (id=9mjoy1)."
},
"categories": [
"all",
"general",
"anime",
"people"
],
"description": "Live Wallhaven community wallpaper data: search the SFW collection by keyword and category (general/anime/people) sorted by favourites, views or freshness, and read any wallpaper's engagement (favourites, views) with resolution, ratio, file type, colours and tags. SFW-only by design. Live, no key. Distinct from generic image/photo APIs — this is Wallhaven's own community wallpapers and engagement.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:06.018Z",
"request_id": "e0ab041e-f095-4c7b-bfdc-ba6cdddba229"
},
"status": "ok",
"message": "Meta",
"success": true
}