What this endpoint helps with
The response includes public Blog data and context needed for subsequent API requests.
When to use it
Use this method when an input identifier or parameter is known and one predictable API result is required.
Retrieve Blog data from Tumblr through the focused “Posts by blog identifier” operation and connect it to product workflows.
Use this method when an input identifier or parameter is known and one predictable API result is required.
Review the result and common workflows first, then move to parameters and a working request example.
The response includes public Blog data and context needed for subsequent API requests.
Use this method when an input identifier or parameter is known and one predictable API result is required.
Request the object you need without loading a larger collection.
Add the Tumblr API result to records, workflows, and internal tools.
Use the response as input for adjacent methods and multi-step workflows.
Both versions solve the same job and accept the same parameters. Use the switch to compare the response structure and choose the version your client expects.
Switch versions on this page to compare response structures while keeping the same documentation URL.
Authentication, required parameters, and the request shape stay the same across V1 and V2. In practice, you choose the version when you build the endpoint path and when you parse the response.
The main difference is the response envelope. Use V2 for new integrations and keep V1 only when you need compatibility with an existing client contract.
Use the same API key header and the same query parameters for both versions. This documentation shows the shared parameter set first, then version-specific endpoint paths and code snippets.
| Parameter | Required | Type | Example | Description |
|---|---|---|---|---|
blog_identifier |
Yes | str |
value |
Tumblr blog username or host without protocol or path. Pass `staff` or `staff.tumblr.com`, not a full URL. Example: staff. |
cursor |
No | str | None |
QVFB... |
Next-page cursor returned by the previous response. Omit it for the first page. |
post_type |
No | all | regular | photo | quote | link | conversation | audio | video | answer |
all |
Optional Tumblr post type filter. Use `all` for the default mixed timeline. Examples: all, photo. |
tag |
No | str | None |
value |
Optional Tumblr tag filter. Spaces are allowed, slashes and URL fragments are not. Example: tumblr staff. |
Choose a version when you copy the exact endpoint path, example URL, and code snippet. The parameter list above stays the same.
GET /api/v2/tumblr.com/blog/posts-by-blog-identifiercurl --request GET \
--url "https://www.scrapestorm.net/api/v2/tumblr.com/blog/posts-by-blog-identifier" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
--get --data-urlencode 'blog_identifier=value' \
# Optional parameters:
# --data-urlencode 'cursor=QVFB...'
# --data-urlencode 'post_type=all'
# --data-urlencode 'tag=value'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v2/tumblr.com/blog/posts-by-blog-identifier"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
"blog_identifier": "value",
}
# Optional parameters
# params["cursor"] = "QVFB..."
# params["post_type"] = "all"
# params["tag"] = "value"
with requests.Session() as session:
response = session.request(
method="GET",
url=urljoin(BASE_URL, ENDPOINT),
headers=HEADERS,
params=params,
timeout=30,
)
response.raise_for_status()
payload = response.json()
print(payload)
const BASE_URL = "https://www.scrapestorm.net";
const endpoint = "/api/v2/tumblr.com/blog/posts-by-blog-identifier";
const params = new URLSearchParams({
blog_identifier: "value",
});
// Optional parameters
// params.set("cursor", "QVFB...");
// params.set("post_type", "all");
// params.set("tag", "value");
const response = await fetch(`${BASE_URL}${endpoint}?${params.toString()}`, {
method: "GET",
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
if (!response.ok) {
throw new Error(`Request failed: ${response.status} ${response.statusText}`);
}
const payload = await response.json();
console.log(payload);
import axios from "axios";
const client = axios.create({
baseURL: "https://www.scrapestorm.net",
timeout: 30000,
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
const params = {
blog_identifier: "value",
};
// Optional parameters
// params.cursor = "QVFB...";
// params.post_type = "all";
// params.tag = "value";
const { data: payload } = await client.request({
method: "GET",
url: endpoint,
params,
});
console.log(payload);
<?php
declare(strict_types=1);
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
$client = new Client([
'base_uri' => "https://www.scrapestorm.net",
'timeout' => 30.0,
'headers' => [
'Accept' => 'application/json',
'X-API-Key' => "00000000-0000-4000-8000-000000000000",
],
]);
$query = [
"blog_identifier" => "value",
];
// Optional parameters
// $query["cursor"] = "QVFB...";
// $query["post_type"] = "all";
// $query["tag"] = "value";
try {
$response = $client->request("GET", "/api/v2/tumblr.com/blog/posts-by-blog-identifier", [
'query' => $query,
]);
$payload = json_decode(
(string) $response->getBody(),
true,
512,
JSON_THROW_ON_ERROR
);
var_dump($payload);
} catch (GuzzleException $e) {
throw $e;
}
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"time"
)
func main() {
baseURL := "https://www.scrapestorm.net"
endpoint := "/api/v2/tumblr.com/blog/posts-by-blog-identifier"
params := url.Values{}
params.Set("blog_identifier", "value")
// Optional parameters
// params.Set("tag", "value")
req, err := http.NewRequest(
"GET",
fmt.Sprintf("%s%s?%s", baseURL, endpoint, params.Encode()),
nil,
)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", "00000000-0000-4000-8000-000000000000")
client := &http.Client{Timeout: 30 * time.Second}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var payload any
if err := json.NewDecoder(resp.Body).Decode(&payload); err != nil {
panic(err)
}
fmt.Printf("%+v\n", payload)
}
Choose a version when you copy the exact endpoint path, example URL, and code snippet. The parameter list above stays the same.
GET /api/v1/tumblr.com/blog/posts-by-blog-identifiercurl --request GET \
--url "https://www.scrapestorm.net/api/v1/tumblr.com/blog/posts-by-blog-identifier" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
--get --data-urlencode 'blog_identifier=value' \
# Optional parameters:
# --data-urlencode 'cursor=QVFB...'
# --data-urlencode 'post_type=all'
# --data-urlencode 'tag=value'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v1/tumblr.com/blog/posts-by-blog-identifier"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
"blog_identifier": "value",
}
# Optional parameters
# params["cursor"] = "QVFB..."
# params["post_type"] = "all"
# params["tag"] = "value"
with requests.Session() as session:
response = session.request(
method="GET",
url=urljoin(BASE_URL, ENDPOINT),
headers=HEADERS,
params=params,
timeout=30,
)
response.raise_for_status()
payload = response.json()
print(payload)
const BASE_URL = "https://www.scrapestorm.net";
const endpoint = "/api/v1/tumblr.com/blog/posts-by-blog-identifier";
const params = new URLSearchParams({
blog_identifier: "value",
});
// Optional parameters
// params.set("cursor", "QVFB...");
// params.set("post_type", "all");
// params.set("tag", "value");
const response = await fetch(`${BASE_URL}${endpoint}?${params.toString()}`, {
method: "GET",
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
if (!response.ok) {
throw new Error(`Request failed: ${response.status} ${response.statusText}`);
}
const payload = await response.json();
console.log(payload);
import axios from "axios";
const client = axios.create({
baseURL: "https://www.scrapestorm.net",
timeout: 30000,
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
const params = {
blog_identifier: "value",
};
// Optional parameters
// params.cursor = "QVFB...";
// params.post_type = "all";
// params.tag = "value";
const { data: payload } = await client.request({
method: "GET",
url: endpoint,
params,
});
console.log(payload);
<?php
declare(strict_types=1);
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
$client = new Client([
'base_uri' => "https://www.scrapestorm.net",
'timeout' => 30.0,
'headers' => [
'Accept' => 'application/json',
'X-API-Key' => "00000000-0000-4000-8000-000000000000",
],
]);
$query = [
"blog_identifier" => "value",
];
// Optional parameters
// $query["cursor"] = "QVFB...";
// $query["post_type"] = "all";
// $query["tag"] = "value";
try {
$response = $client->request("GET", "/api/v1/tumblr.com/blog/posts-by-blog-identifier", [
'query' => $query,
]);
$payload = json_decode(
(string) $response->getBody(),
true,
512,
JSON_THROW_ON_ERROR
);
var_dump($payload);
} catch (GuzzleException $e) {
throw $e;
}
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"time"
)
func main() {
baseURL := "https://www.scrapestorm.net"
endpoint := "/api/v1/tumblr.com/blog/posts-by-blog-identifier"
params := url.Values{}
params.Set("blog_identifier", "value")
// Optional parameters
// params.Set("tag", "value")
req, err := http.NewRequest(
"GET",
fmt.Sprintf("%s%s?%s", baseURL, endpoint, params.Encode()),
nil,
)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", "00000000-0000-4000-8000-000000000000")
client := &http.Client{Timeout: 30 * time.Second}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var payload any
if err := json.NewDecoder(resp.Body).Decode(&payload); err != nil {
panic(err)
}
fmt.Printf("%+v\n", payload)
}
The preview keeps key fields and the first collection items so you can scan the response shape quickly. Switching versions changes the JSON format.
This compact JSON example comes from the latest successful verification run for V2.
{
"success": true,
"status": "ok",
"pagination": {
"cursor": null,
"has_more": false
},
"search_context": {
"blog_identifier": "staff",
"post_type": "all",
"tag": "tumblr staff"
},
"data": {
"blog": {
"url": "https://staff.tumblr.com",
"blog_identifier": "staff.tumblr.com",
"uuid": null,
"username": "staff",
"display_name": "Tumblr Staff",
"description": null,
"emails": [],
"external_links": [],
"rss_url": "https://staff.tumblr.com/rss",
"timezone": null,
"is_custom_domain": false,
"avatar_url": null,
"avatar_urls": null
},
"posts": {
"count": 20,
"total_count": 20,
"items": [
{
"url": "https://staff.tumblr.com/post/822057428507049984",
"post_id": "822057428507049984",
"title": "In case you’re looking for a blog that’s gone missing on Tumblr and didn’t see this recent update.",
"summary": "In case you’re looking for a blog that’s gone missing on Tumblr and didn’t see this recent update.",
"hashtags": [],
"emails": [],
"body_html": "<p><a class=\"tumblr_blog\" href=\"https://changes.tumblr.com/post/818409292753436672/deleted-accounts-can-now-be-recovered-up-to-30\">changes</a>:</p><blockquote><h1>Deleted accoun…",
"blog_username": "staff",
"blog_display_name": "Tumblr Staff",
"blog_url": "https://staff.tumblr.com",
"blog_avatar_url": null,
"blog_avatar_urls": null,
"published_at": "2026-07-13T20:37:36Z",
"note_count": null,
"type": "regular",
"slug": null,
"tags": [
"tumblr"
],
"reblogged_from": null,
"reblogged_root": null,
"media": []
},
{
"url": "https://staff.tumblr.com/post/818408523445731328",
"post_id": "818408523445731328",
"title": "Where’s that comment?",
"summary": "Where’s that comment?",
"hashtags": [],
"emails": [],
"body_html": "<p><a class=\"tumblr_blog\" href=\"https://engineering.tumblr.com/post/818227557915901952/launch-day\">engineering</a>:</p><blockquote><p><a class=\"tumblr_blog\" href=\"https://engine…",
"blog_username": "staff",
"blog_display_name": "Tumblr Staff",
"blog_url": "https://staff.tumblr.com",
"blog_avatar_url": null,
"blog_avatar_urls": null,
"published_at": "2026-06-03T13:59:49Z",
"note_count": null,
"type": "regular",
"slug": null,
"tags": [
"radical speed month",
"rsm",
{
"_more_items": 3
}
],
"reblogged_from": null,
"reblogged_root": null,
"media": [
{
"url": "https://64.media.tumblr.com/b70baed40b8a42f2647f1e9727980326/bc08fda5fd4aaa10-94/s640x960/90039a62dfb3c54bf3efc7f22b072a9211196fb0.png",
"width": 1030,
"height": 1506,
"media_type": "image"
},
{
"url": "https://64.media.tumblr.com/1b0af89e8b0e820c96223492c467801e/bc08fda5fd4aaa10-f1/s640x960/d5303ad0839d889c1474bf2b498151e4f678ca1d.png",
"width": 602,
"height": 1047,
"media_type": "image"
},
{
"_more_items": 2
}
]
},
{
"_more_items": 18
}
]
}
}
}
This compact JSON example comes from the latest successful verification run for V1.
{
"success": true,
"status": "ok",
"pagination": {
"cursor": null,
"has_more": false
},
"search_context": {
"post_type": "all",
"tag": "tumblr staff",
"blog_identifier": "staff"
},
"data": {
"tumblelog": {
"name": "staff",
"title": "Tumblr Staff",
"description": "",
"url": "https://staff.tumblr.com",
"feeds": [
"https://staff.tumblr.com/rss"
]
},
"posts-start": 0,
"posts-total": 20,
"posts-type": false,
"posts": [
{
"id": "822057428507049984",
"type": "regular",
"url-with-slug": "https://staff.tumblr.com/post/822057428507049984",
"slug": null,
"regular-title": "In case you’re looking for a blog that’s gone missing on Tumblr and didn’t see this recent update.",
"regular-body": "<p><a class=\"tumblr_blog\" href=\"https://changes.tumblr.com/post/818409292753436672/deleted-accounts-can-now-be-recovered-up-to-30\">changes</a>:</p><blockquote><h1>Deleted accoun…",
"unix-timestamp": 1783975056,
"tumblelog": {
"name": "staff",
"title": "Tumblr Staff",
"url": "https://staff.tumblr.com/"
},
"tags": [
"tumblr"
]
},
{
"id": "818408523445731328",
"type": "regular",
"url-with-slug": "https://staff.tumblr.com/post/818408523445731328",
"slug": null,
"regular-title": "Where’s that comment?",
"regular-body": "<p><a class=\"tumblr_blog\" href=\"https://engineering.tumblr.com/post/818227557915901952/launch-day\">engineering</a>:</p><blockquote><p><a class=\"tumblr_blog\" href=\"https://engine…",
"unix-timestamp": 1780495189,
"tumblelog": {
"name": "staff",
"title": "Tumblr Staff",
"url": "https://staff.tumblr.com/"
},
"tags": [
"radical speed month",
"rsm",
{
"_more_items": 3
}
]
},
{
"_more_items": 18
}
],
"pagination": {
"cursor": null,
"has_more": false
}
}
}
Use this documentation as the first decision point, then move into pricing, platform coverage, and integration rules before you connect the endpoint for recurring use.
Use these answers to decide whether this API method fits your workflow, versioning choice, and rollout plan.
The method performs “Posts by blog identifier” for Blog. The compact response example below shows the exact field structure.
Choose V2 for new integrations because it provides a normalized structure. Use V1 only for compatibility with clients that already consume the platform-native format.
Create an API key, send it in the request header, and provide the required parameters from the table. The code samples already contain the correct path and request structure.