/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/hatenabookmark-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hatenabookmark-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hatenabookmark-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/hatenabookmark-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "hot and new take category (one of: general, social, economics, life, knowledge, it, fun, entertainment, game, default general) and limit (1-50). count takes url (a single URL) or urls (comma-separated, up to 20). meta takes no parameters. bookmark_count is the real Hatena bookmark total; titles are Japanese with HTML entities decoded. A ~10-minute cache fronts the upstream.",
"sample": {
"title": "アンソロピック、米政府指示でミュトス級AI提供停止 日本含む - 日本経済新聞",
"top_bookmarks": 259
},
"source": "Hatena Bookmark public RSS + count API (b.hatena.ne.jp, bookmark.hatenaapis.com), keyless, live",
"service": "hatenabookmark-api",
"endpoints": {
"GET /v1/hot": "Most-bookmarked (popular) entries by category (category=it).",
"GET /v1/new": "Newly-rising entries gaining bookmarks fast (category=it).",
"GET /v1/meta": "This document.",
"GET /v1/count": "Exact bookmark count for URL(s) (url=https://github.com/)."
},
"categories": [
"general",
"social",
"economics",
"life",
"knowledge",
"it",
"fun",
"entertainment",
"game"
],
"description": "Japan's biggest social-bookmarking trends from Hatena Bookmark (b.hatena.ne.jp), keyless. 'Hatebu' is the Japanese internet's collective save button — the most-bookmarked links are the country's de-facto trending list. The hot endpoint returns the popular (most-bookmarked) entries for a category; the new endpoint returns the newly-rising entries gaining bookmarks fast; the count endpoint returns the exact bookmark count for any URL(s). The Hatena Bookmark cut — a distinct social-bookmarking platform, separate from the developer, blogging and streaming feeds, and the cleanest read on Japanese-web attention.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-13T04:42:04.375Z",
"request_id": "8123d97d-6083-445f-8196-637950221a02"
},
"status": "ok",
"message": "Meta",
"success": true
}