Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/hatenabookmark-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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