What this endpoint helps with
The response provides available Profile fields in normalized V2 or platform-native V1 format.
When to use it
Use “Boards by username” after the object is known and your product needs its current public context.
Retrieve detailed public Profile data from Pinterest by a known identifier for object records, validation, and enrichment.
Use “Boards by username” after the object is known and your product needs its current public context.
Review the result and common workflows first, then move to parameters and a working request example.
The response provides available Profile fields in normalized V2 or platform-native V1 format.
Use “Boards by username” after the object is known and your product needs its current public context.
Attach public Pinterest fields to known product objects.
Verify identifiers and current public context before downstream processing.
Use object details as inputs for reports, scoring, and related requests.
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 |
|---|---|---|---|---|
username |
Yes | str |
value |
Public username without the @ symbol. |
cursor |
No | str | None |
QVFB... |
Next-page cursor returned by the previous response. Omit it for the first page. |
sort |
No | last_pinned_to | alphabetical | created_at |
last_pinned_to |
Pinterest board sort order. Example: last_pinned_to. |
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/pinterest.com/profile/boards-by-usernamecurl --request GET \
--url "https://www.scrapestorm.net/api/v2/pinterest.com/profile/boards-by-username" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
--get --data-urlencode 'username=value' \
# Optional parameters:
# --data-urlencode 'cursor=QVFB...'
# --data-urlencode 'sort=last_pinned_to'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v2/pinterest.com/profile/boards-by-username"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
"username": "value",
}
# Optional parameters
# params["cursor"] = "QVFB..."
# params["sort"] = "last_pinned_to"
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/pinterest.com/profile/boards-by-username";
const params = new URLSearchParams({
username: "value",
});
// Optional parameters
// params.set("cursor", "QVFB...");
// params.set("sort", "last_pinned_to");
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 = {
username: "value",
};
// Optional parameters
// params.cursor = "QVFB...";
// params.sort = "last_pinned_to";
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 = [
"username" => "value",
];
// Optional parameters
// $query["cursor"] = "QVFB...";
// $query["sort"] = "last_pinned_to";
try {
$response = $client->request("GET", "/api/v2/pinterest.com/profile/boards-by-username", [
'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/pinterest.com/profile/boards-by-username"
params := url.Values{}
params.Set("username", "value")
// Optional parameters
// params.Set("sort", "last_pinned_to")
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/pinterest.com/profile/boards-by-usernamecurl --request GET \
--url "https://www.scrapestorm.net/api/v1/pinterest.com/profile/boards-by-username" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
--get --data-urlencode 'username=value' \
# Optional parameters:
# --data-urlencode 'bookmark=value'
# --data-urlencode 'sort=last_pinned_to'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v1/pinterest.com/profile/boards-by-username"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
"username": "value",
}
# Optional parameters
# params["bookmark"] = "value"
# params["sort"] = "last_pinned_to"
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/pinterest.com/profile/boards-by-username";
const params = new URLSearchParams({
username: "value",
});
// Optional parameters
// params.set("bookmark", "value");
// params.set("sort", "last_pinned_to");
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 = {
username: "value",
};
// Optional parameters
// params.bookmark = "value";
// params.sort = "last_pinned_to";
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 = [
"username" => "value",
];
// Optional parameters
// $query["bookmark"] = "value";
// $query["sort"] = "last_pinned_to";
try {
$response = $client->request("GET", "/api/v1/pinterest.com/profile/boards-by-username", [
'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/pinterest.com/profile/boards-by-username"
params := url.Values{}
params.Set("username", "value")
// Optional parameters
// params.Set("sort", "last_pinned_to")
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": "QVFB...",
"has_more": true
},
"search_context": {
"username": "pinterest",
"sort": "last_pinned_to"
},
"data": {
"boards": {
"count": 10,
"items": [
{
"url": "https://www.pinterest.com/pinterest/ideas-for-your-summer-escape/",
"board_id": "424605139808113418",
"name": "Ideas for your summer escape",
"description": "From beach days to weekend adventures, all the inspiration you need to pack your bags.",
"emails": [],
"pin_count": 101,
"follower_count": 4221682,
"collaborator_count": 0,
"section_count": 0,
"privacy": "public",
"is_collaborative": false,
"created_at": "2026-05-27T20:58:30+00:00",
"modified_at": "2026-07-01T17:43:57+00:00",
"owner": {
"url": "https://www.pinterest.com/pinterest/",
"user_id": "424605208526455283",
"username": "pinterest",
"display_name": "Pinterest",
"follower_count": 6257620,
"verified": true,
"is_private": false,
"avatar_url": "https://example.com/image.jpg"
},
"thumbnail_url": "https://example.com/image.jpg"
},
{
"url": "https://www.pinterest.com/pinterest/spice-up-your-dinner-plans/",
"board_id": "424605139808113480",
"name": "Spice up your dinner plans",
"description": "Easy date night dinners that bring the romance, the fun, and really good food.",
"emails": [],
"pin_count": 74,
"follower_count": 4221665,
"collaborator_count": 0,
"section_count": 0,
"privacy": "public",
"is_collaborative": false,
"created_at": "2026-05-28T05:37:21+00:00",
"modified_at": "2026-07-01T17:45:15+00:00",
"owner": {
"url": "https://www.pinterest.com/pinterest/",
"user_id": "424605208526455283",
"username": "pinterest",
"display_name": "Pinterest",
"follower_count": 6257620,
"verified": true,
"is_private": false,
"avatar_url": "https://example.com/image.jpg"
},
"thumbnail_url": "https://example.com/image.jpg"
},
{
"_more_items": 8
}
]
}
}
}
This compact JSON example comes from the latest successful verification run for V1.
{
"success": true,
"status": "ok",
"pagination": {
"cursor": "QVFB...",
"has_more": true
},
"search_context": {
"sort": "last_pinned_to",
"username": "pinterest"
},
"data": {
"resource_response": {
"status": "success",
"code": 0,
"message": "ok",
"endpoint_name": "v3_user_profile_boards_feed",
"data": [
{
"node_id": "Qm9hcmQ6NDI0NjA1MTM5ODA4MTEzNDE4",
"collaborated_by_me": false,
"allow_homefeed_recommendations": true,
"created_at": "Wed, 27 May 2026 20:58:30 +0000",
"image_cover_url": "https://i.pinimg.com/200x150/a3/74/b8/a374b87d444a26ce170dcda5751b70fd.jpg",
"type": "board",
"has_custom_cover": false,
"is_collaborative": false,
"description": "From beach days to weekend adventures, all the inspiration you need to pack your bags.",
"section_count": 0,
"collaborator_requests_enabled": false,
"is_ads_only": false,
"pin_count": 101,
"should_show_shop_feed": false,
"board_order_modified_at": "Wed, 01 Jul 2026 17:43:57 +0000",
"cover_images": {
"200x150": {
"url": "https://i.pinimg.com/200x150/a3/74/b8/a374b87d444a26ce170dcda5751b70fd.jpg",
"width": 200,
"height": 150
},
"236x": {
"url": "https://i.pinimg.com/236x/a3/74/b8/a374b87d444a26ce170dcda5751b70fd.jpg",
"width": 236,
"height": null
}
},
"archived_by_me_at": null,
"url": "/pinterest/ideas-for-your-summer-escape/",
"place_saves_count": 0,
"should_show_board_collaborators": true,
"follower_count": 4221682,
"image_cover_hd_url": "https://i.pinimg.com/474x/a3/74/b8/a374b87d444a26ce170dcda5751b70fd.jpg",
"name": "Ideas for your summer escape",
"followed_by_me": false,
"_more_fields": "14 more fields"
},
{
"node_id": "Qm9hcmQ6NDI0NjA1MTM5ODA4MTEzNDgw",
"collaborated_by_me": false,
"allow_homefeed_recommendations": true,
"created_at": "Thu, 28 May 2026 05:37:21 +0000",
"image_cover_url": "https://i.pinimg.com/custom_covers/200x150/424605139808113480_1782230932.jpg",
"type": "board",
"has_custom_cover": true,
"is_collaborative": false,
"description": "Easy date night dinners that bring the romance, the fun, and really good food.",
"section_count": 0,
"collaborator_requests_enabled": false,
"is_ads_only": false,
"pin_count": 74,
"should_show_shop_feed": false,
"board_order_modified_at": "Wed, 01 Jul 2026 17:45:15 +0000",
"cover_images": {
"200x150": {
"url": "https://i.pinimg.com/custom_covers/200x150/424605139808113480_1782230932.jpg",
"width": 200,
"height": 150
},
"236x": {
"url": "https://i.pinimg.com/custom_covers/236x/424605139808113480_1782230932.jpg",
"width": 236,
"height": null
}
},
"archived_by_me_at": null,
"url": "/pinterest/spice-up-your-dinner-plans/",
"place_saves_count": 0,
"should_show_board_collaborators": true,
"follower_count": 4221665,
"image_cover_hd_url": "https://i.pinimg.com/474x/82/80/07/828007fd8e01116811f1e15539c95d63.jpg",
"name": "Spice up your dinner plans",
"followed_by_me": false,
"_more_fields": "14 more fields"
},
{
"_more_items": 8
}
],
"bookmark": "LT4xMDEzMzgwNDIyMzQzNDUwMDc5fDEwfDQzNDk5NTAyOTczNTYwOTEqR1FMKnw1ODMyMTcxM2M2OWM5MDk4Zjg4MWVlN2YzYjViZWIyZmQxZGY3NTVlZTZmNTEyOThjNTE3YzNkNWY0OGE5YWFkfE5FV3w=",
"x_pinterest_sli_endpoint_name": "v3_user_profile_boards_feed",
"http_status": 200
},
"client_context": {
"analysis_ua": {
"app_type": 5,
"app_version": "",
"browser_name": "Chrome",
"browser_version": "145.0.0",
"device_type": null,
"device": "Other",
"os_name": "Windows 10",
"os_version": "10"
},
"app_type_detailed": 5,
"app_version": "e86b6e0",
"autologin": null,
"browser_locale": "en-US",
"browser_name": "Chrome",
"browser_type": 1,
"browser_version": "145.0.0",
"country": "US",
"country_from_hostname": "US",
"country_from_ip": "US",
"csp_nonce": "8ef7aa0890d5b376a141c8d46a120abc",
"current_url": "https://www.pinterest.com/resource/BoardsFeedResource/get/?source_url=/pinterest/&data=%7B%22options%22:%7B%22field_set_key%22:%22profile_grid_item%22,%22filter_stories%22:false…",
"debug": false,
"deep_link": "",
"enabled_advertiser_countries": [
"AR",
"AT",
{
"_more_items": 24
}
],
"facebook_token": null,
"full_path": "/resource/BoardsFeedResource/get/?source_url=/pinterest/&data=%7B%22options%22:%7B%22field_set_key%22:%22profile_grid_item%22,%22filter_stories%22:false,%22sort%22:%22last_pinne…",
"http_referrer": "https://www.pinterest.com/",
"impersonator_user_id": null,
"invite_code": "",
"invite_sender_id": "",
"is_authenticated": false,
"is_bot": "false",
"_more_fields": "33 more fields"
},
"resource": {
"name": "BoardsFeedResource",
"options": {
"bookmarks": [
"LT4xMDEzMzgwNDIyMzQzNDUwMDc5fDEwfDQzNDk5NTAyOTczNTYwOTEqR1FMKnw1ODMyMTcxM2M2OWM5MDk4Zjg4MWVlN2YzYjViZWIyZmQxZGY3NTVlZTZmNTEyOThjNTE3YzNkNWY0OGE5YWFkfE5FV3w="
],
"field_set_key": "profile_grid_item",
"filter_stories": false,
"sort": "last_pinned_to",
"username": "pinterest"
}
},
"request_identifier": "4349950297356091"
}
}
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 “Boards by username” for Profile. 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.