Tumblr
Tumblr — public JSON route
Tumblr listed as OAuth but exposes a keyless read route we verified (Social). Check docs for auth on write routes.
We probe without your API key. A 401/403 auth wall means the server is up — not a full health pass. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.tumblr.com/v2/blog/david.tumblr.com/info?api_key=YOUR_API_KEY
{
"meta": {
"status": 200,
"msg": "OK"
},
"response": {
"blog": {
"ask": true,
"ask_anon": false,
"ask_page_title": "Ask me anything",
"asks_allow_media": true,
"avatar": [
{
"width": 512,
"height": 512,
"url": "https://64.media.tumblr.com/avatar_fdf0635a9d74_512.png",
"accessories": []
},
{
"width": 128,
"height": 128,
"url": "https://64.media.tumblr.com/avatar_fdf0635a9d74_128.png",
"accessories": []
}
],
"can_chat": false,
"can_subscribe": false,
"description": "Est. 2006"
}
}
}curl "https://api.tumblr.com/v2/blog/david.tumblr.com/info?api_key=YOUR_API_KEY"const res = await fetch("https://api.tumblr.com/v2/blog/david.tumblr.com/info?api_key=YOUR_API_KEY");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.tumblr.com/v2/blog/david.tumblr.com/info?api_key=YOUR_API_KEY")
print(res.json())/v2/blog/david.tumblr.com/info?api_key=YOUR_API_KEYPROBEDTumblr — public JSON route
/v2V2 — documented GET route.
/v2/1V2 details by ID (example: 1).
/v2?limit=10V2 — documented GET route.
/v2/search?q=testSearch by query parameters.
/v2/V2 — documented GET route.
We probe without your API key. A 401/403 auth wall means the server is up — not a full health pass. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Tumblr: common questions
Is Tumblr free to use?
Yes — Tumblr is a free social & work API. Free tier: OAuth — some read routes may be public. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Tumblr need an API key?
Yes — Tumblr authenticates with OAuth. See the provider docs for scopes and token setup; rate limits: Unpublished.
Can I call Tumblr from the browser?
Yes — Tumblr returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Tumblr up right now?
Tumblr is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.