Get a public Pillar.io page
curl --request GET \
--url https://api.scraperize.com/v1/pillar/page \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/pillar/page"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.scraperize.com/v1/pillar/page', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scraperize.com/v1/pillar/page",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scraperize.com/v1/pillar/page"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scraperize.com/v1/pillar/page")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/pillar/page")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"page": {
"username": "mdmotivator",
"name": "Zachery Dereniowski",
"displayName": "Kindness is cool ❤️",
"tagline": null,
"location": null,
"avatarUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/user-image/page/331d7f84-fbf1-46bc-9059-25b67f448578_43e61fa0-b3b6-11f0-a45c-05c8b1b25c46",
"bannerImageUrl": null,
"influencerId": "de9db532-6e21-48ae-b211-025d8ab6c9cc",
"userId": "331d7f84-fbf1-46bc-9059-25b67f448578",
"createdAt": "2022-08-03T21:17:11.519316+00:00",
"theme": {
"name": "customization-a",
"isDark": true,
"textColor": "#fff",
"backgroundColor": "#211D1B",
"backgroundImageUrl": null,
"itemStyle": "rounded-full",
"itemsFont": "'Ubuntu', sans-serif"
},
"socialLinks": [
{
"platform": "EMAIL",
"url": "mailto:zachery@onefluent.com"
},
{
"platform": "TIKTOK",
"url": "https://www.tiktok.com/@mdmotivator?lang=en"
},
{
"platform": "YOUTUBE",
"url": "https://www.youtube.com/c/MDMotivator"
}
],
"items": [
{
"id": "bd7299b3-c930-49e7-a9dd-62641bdbbe10",
"type": "FEATURED_PRODUCT",
"title": "Let’s Change David’s Family’s Life ❤️",
"subtitle": null,
"url": "https://slingshot.giving/Davidsfamily",
"imageUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/page-block-image/featured-product/square/c87d79bc-2f50-4a0c-b354-ff4c0d640b70_7241364d-4793-49f7-bf6c-5bcd0bdb781b",
"cta": "Donate Now",
"clicks": 144735,
"order": 0,
"price": 0,
"currency": null,
"brandName": "REPLACE_ME",
"text": null,
"blocks": null
},
{
"id": "8ede6f50-f8b3-11ed-ad93-81f52840e23a",
"type": "EXPERIENCE",
"title": null,
"subtitle": null,
"url": null,
"imageUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/builder-form-default/scheduled-event-thumbnail",
"cta": null,
"clicks": 0,
"order": 0,
"price": null,
"currency": null,
"brandName": null,
"text": null,
"blocks": null
},
{
"id": "4d48c561-67bd-11f0-9f96-1ddbe8c8c1ab",
"type": "FEATURED_PRODUCT",
"title": null,
"subtitle": null,
"url": null,
"imageUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/page-block-image/featured-product/square/4d48c561-67bd-11f0-9f96-1ddbe8c8c1ab_5b3f99a0-67bd-11f0-9f96-1ddbe8c8c1ab",
"cta": "Donate Now!",
"clicks": 7,
"order": 1,
"price": null,
"currency": null,
"brandName": null,
"text": null,
"blocks": null
}
],
"itemCount": 49,
"totalItems": 123
},
"fetchedAt": "2026-09-14T12:14:41.794Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The requested content was not found (it may not exist, be deleted, or be private).",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Pillar
Get a public Pillar.io page
Fetches a public Pillar.io creator page by URL: the profile (name, display name, avatar, socials, theme) and the page content blocks (custom links, featured products with prices, videos, collections, …) — each with its title, url, image, and click count.
GET
/
v1
/
pillar
/
page
Get a public Pillar.io page
curl --request GET \
--url https://api.scraperize.com/v1/pillar/page \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/pillar/page"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.scraperize.com/v1/pillar/page', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scraperize.com/v1/pillar/page",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scraperize.com/v1/pillar/page"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scraperize.com/v1/pillar/page")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/pillar/page")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"page": {
"username": "mdmotivator",
"name": "Zachery Dereniowski",
"displayName": "Kindness is cool ❤️",
"tagline": null,
"location": null,
"avatarUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/user-image/page/331d7f84-fbf1-46bc-9059-25b67f448578_43e61fa0-b3b6-11f0-a45c-05c8b1b25c46",
"bannerImageUrl": null,
"influencerId": "de9db532-6e21-48ae-b211-025d8ab6c9cc",
"userId": "331d7f84-fbf1-46bc-9059-25b67f448578",
"createdAt": "2022-08-03T21:17:11.519316+00:00",
"theme": {
"name": "customization-a",
"isDark": true,
"textColor": "#fff",
"backgroundColor": "#211D1B",
"backgroundImageUrl": null,
"itemStyle": "rounded-full",
"itemsFont": "'Ubuntu', sans-serif"
},
"socialLinks": [
{
"platform": "EMAIL",
"url": "mailto:zachery@onefluent.com"
},
{
"platform": "TIKTOK",
"url": "https://www.tiktok.com/@mdmotivator?lang=en"
},
{
"platform": "YOUTUBE",
"url": "https://www.youtube.com/c/MDMotivator"
}
],
"items": [
{
"id": "bd7299b3-c930-49e7-a9dd-62641bdbbe10",
"type": "FEATURED_PRODUCT",
"title": "Let’s Change David’s Family’s Life ❤️",
"subtitle": null,
"url": "https://slingshot.giving/Davidsfamily",
"imageUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/page-block-image/featured-product/square/c87d79bc-2f50-4a0c-b354-ff4c0d640b70_7241364d-4793-49f7-bf6c-5bcd0bdb781b",
"cta": "Donate Now",
"clicks": 144735,
"order": 0,
"price": 0,
"currency": null,
"brandName": "REPLACE_ME",
"text": null,
"blocks": null
},
{
"id": "8ede6f50-f8b3-11ed-ad93-81f52840e23a",
"type": "EXPERIENCE",
"title": null,
"subtitle": null,
"url": null,
"imageUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/builder-form-default/scheduled-event-thumbnail",
"cta": null,
"clicks": 0,
"order": 0,
"price": null,
"currency": null,
"brandName": null,
"text": null,
"blocks": null
},
{
"id": "4d48c561-67bd-11f0-9f96-1ddbe8c8c1ab",
"type": "FEATURED_PRODUCT",
"title": null,
"subtitle": null,
"url": null,
"imageUrl": "https://res.cloudinary.com/pillario/image/upload/f_auto,q_auto/page-block-image/featured-product/square/4d48c561-67bd-11f0-9f96-1ddbe8c8c1ab_5b3f99a0-67bd-11f0-9f96-1ddbe8c8c1ab",
"cta": "Donate Now!",
"clicks": 7,
"order": 1,
"price": null,
"currency": null,
"brandName": null,
"text": null,
"blocks": null
}
],
"itemCount": 49,
"totalItems": 123
},
"fetchedAt": "2026-09-14T12:14:41.794Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The requested content was not found (it may not exist, be deleted, or be private).",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Authorizations
Your API key. Send it in the x-api-key header (or Authorization: Bearer <key>). Create and manage keys from your dashboard.
Query Parameters
Public Pillar.io profile URL, e.g. https://pillar.io/mdmotivator.
Optional. Return a cached result if one this age or newer exists — served for 0 credits with meta.cached=true and meta.cachedAt. Otherwise a fresh scrape runs (1 credit) and refreshes the cache. Omit to always scrape fresh.
Available options:
1d, 3d, 7d, 14d, 30d