Lodol Docs

Tumblr

API actions for the Tumblr integration.

Tumblr

Discover and retrieve Tumblr content with your API key.


Fetch blog posts

List recent posts from a Tumblr blog.

Parameters

ParameterTypeRequiredDescription
blog_identifierstringYesBlog hostname or identifier (e.g., example.tumblr.com).
limitnumberNoMaximum number of posts to fetch.
post_typestringNoOptional Tumblr post type filter (text, photo, etc.).

Response

{
  "count": {},
  "posts": {},
  "status": "mock_value",
  "total": {}
}

Get blog info

Retrieve metadata about a Tumblr blog.

Parameters

ParameterTypeRequiredDescription
blog_identifierstringYesBlog hostname or identifier (e.g., example.tumblr.com).

Response

{
  "blog": {},
  "status": "mock_value"
}

Search tagged posts

Find recent Tumblr posts by tag.

Parameters

ParameterTypeRequiredDescription
tagstringYesTag to search for.
limitnumberNoMaximum number of posts to return.
beforenumberNoOnly return posts before this Unix timestamp.

Response

{
  "count": {},
  "posts": {},
  "status": "mock_value"
}

On this page