/v1/entry
The public bookmarks and comments on one URL
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/hatenabookmark-api/v1/entry" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hatenabookmark-api/v1/entry", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hatenabookmark-api/v1/entry");
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/entry",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"eid": "148820594",
"url": "https://developer.mozilla.org/ja/docs/Web/JavaScript",
"note": "Every public bookmark Hatena returns for this URL, each with the user, their comment and tags. bookmark_count is the total (incl. private/comment-less); public_bookmarks_returned is how many are listed here. Live, cached ~10m.",
"title": "JavaScript - MDC",
"source": "Hatena Bookmark entry API (b.hatena.ne.jp/entry/jsonlite), keyless",
"bookmarks": [
{
"tags": [
"JavaScript"
],
"user": "fukuchiharuki",
"comment": "基礎",
"timestamp": "2022/03/21 15:15"
},
{
"tags": [
"javascript",
"programming",
"language",
"reference",
"document",
"api",
"言語",
"ブラウザ",
"プログラミング",
"あとで読む"
],
"user": "Itisango",
"comment": "チュートリアル/完全な初心者向け/JavaScript の第一歩/JavaScript の構成要素/JavaScript のオブジェクトの紹介/非同期 JavaScript/クライアント側ウェブ API/JavaScript ガイド/中級者向け/クライアント側の JavaScript フレームワークの理…",
"timestamp": "2022/02/11 14:58"
},
{
"tags": [],
"user": "hiroshe",
"comment": "Qiitaとか見る前にまずここを見よ。",
"timestamp": "2021/03/11 10:23"
},
{
"tags": [],
"user": "calibaby",
"comment": "完全に無料でここまでリソースがあるので活用しない手はないね。まずは「完全な初心者向けからw",
"timestamp": "2020/04/27 07:55"
},
{
"tags": [
"javascript",
"リファレンス",
"仕事",
"あとで読む"
],
"user": "cielonlon",
"comment": "JavaScriptについての、整理され体型だった、日本語のリファレンス!",
"timestamp": "2019/07/12 08:57"
},
{
"tags": [
"Javascript"
],
"user": "kjin",
"comment": "“JavaScript”",
"timestamp": "2018/08/23 19:03"
},
{
"tags": [
"★",
"javascript"
],
"user": "l-_-ll",
"comment": "初心者向けチュートリアル/中級者向けJavaScript 「再」入門: JavaScript なら知ってるよ、と思っている方々に送る概説。",
"timestamp": "2017/12/14 15:13"
},
{
"tags": [
"IT"
],
"user": "namaenomori",
"comment": "JavaScriptのリファレンス",
"timestamp": "2017/03/28 09:37"
},
{
"tags": [],
"user": "yayocan",
…