Tumblr
API actions for the Tumblr integration.
Tumblr
Search Tumblr posts and read blog details.
List blog posts
List recent posts from a Tumblr blog.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
blog_identifier | string | Yes | The blog's name or address, for example example.tumblr.com. |
limit | number | No | Maximum number of posts to fetch. |
post_type | string | No | Only return posts of this type, for example text or photo. |
Response
{
"count": {},
"posts": {},
"status": "mock_value",
"total": {}
}Get blog details
Look up details about a Tumblr blog.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
blog_identifier | string | Yes | The blog's name or address, for example example.tumblr.com. |
Response
{
"blog": {},
"status": "mock_value"
}Search posts by tag
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 published before this time, given as a Unix timestamp in seconds (for example, 1704067200). |
Response
{
"count": {},
"posts": {},
"status": "mock_value"
}