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
| Parameter | Type | Required | Description |
|---|---|---|---|
blog_identifier | string | Yes | Blog hostname or identifier (e.g., example.tumblr.com). |
limit | number | No | Maximum number of posts to fetch. |
post_type | string | No | Optional Tumblr post type filter (text, photo, etc.). |
Response
{
"count": {},
"posts": {},
"status": "mock_value",
"total": {}
}Get blog info
Retrieve metadata about a Tumblr blog.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
blog_identifier | string | Yes | Blog hostname or identifier (e.g., example.tumblr.com). |
Response
{
"blog": {},
"status": "mock_value"
}Search tagged posts
Find recent Tumblr posts by tag.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tag | string | Yes | Tag to search for. |
limit | number | No | Maximum number of posts to return. |
before | number | No | Only return posts before this Unix timestamp. |
Response
{
"count": {},
"posts": {},
"status": "mock_value"
}