Overview
The Tumblr API gives you access to Tumblr's creative blogging platform, letting you read posts, follow blogs, and publish content using OAuth authentication. It supports rich media posts including text, images, videos, and GIFs in Tumblr's signature reblog-based format. Developers can use it to build dashboards, content aggregators, or automate posting across Tumblr blogs.
Beginner Tip
Register your app at tumblr.com/oauth/apps to get your API key; you can read public blog posts with just the API key and only need full OAuth for posting or following.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Tumblr",
"description": "Read and write Tumblr Data",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
meta.status HTTP status code of the response, e.g. 200 for success. response.blog.title The display title of the Tumblr blog. response.posts Array of post objects returned for the blog. response.posts[].type Post type such as "text", "photo", "video", or "quote". response.posts[].body The HTML body content of a text post. response.posts[].timestamp Unix timestamp of when the post was published. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://www.tumblr.com/docs/en/api/v2";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Blogger
The Blogger API from Google lets you read and write content on Blogger-powered blogs, including posts, comments, pages, and user information.
Cisco Spark
Cisco Spark provides programmatic access to team collaboration software via REST API.
Discord
⭐ Beginner's PickThe Discord API lets developers create bots, integrate Discord features into websites, and build rich applications on top of the Discord platform.
Disqus
The Disqus API gives developers access to Disqus commenting data, including posts, threads, forums, and user information.
The Facebook Graph API is Meta primary way for apps to read and write data to Facebook, including user profiles, pages, posts, photos, and analytics.