Pillar · Guide

How to get Pillar page

TL;DR
To get Pillar page, sign up for a free Captapi key, then send one GET request to /v1/pillar/page with your input. You get clean JSON back in seconds for 1 credit per call — no OAuth, scraping or platform SDKs. Pillar link-in-bio → identity, socials{}, links[] with per-link clicks, products[]. Flat 1 credit.

How to get Pillar page (step by step)

  1. 1

    Get a free API key

    Create a free Captapi account (100 credits, no card) and generate an API key from the dashboard.

  2. 2

    Call the Pillar Page API

    Send an authenticated GET request to /v1/pillar/page with your input. No OAuth, no scraping setup.

  3. 3

    Read the JSON response

    Parse the clean JSON response. Pass cache=true for a free 24h cache hit; default is always fresh.

Code example

curl "https://api.captapi.com/v1/pillar/page?url=https%3A%2F%2Fpillar.io%2Fangelstrife" \
  -H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."

What the response looks like

{
  "success": true,
  "data": {
    "platform": "pillar",
    "id": "d8a5cbb4-a64d-44f2-830d-27a489bbc608",
    "url": "https://pillar.io/angelstrife",
    "username": "angelstrife",
    "handle": "angelstrife",
    "displayName": "Ángel Strife",
    "name": "Ángel Strife",
    "firstName": "Angel",
    "lastName": "Blanco",
    "avatar": "https://res.cloudinary.com/pillario/image/upload/user-image/page/96024b21-566f-405a-b4f2-2784526b380b",
    "location": "México",
    "email": "angelrafaelcovablanco@gmail.com",
    "linkCount": 5,
    "socials": {
      "tiktok": "https://tiktok.com/@angelstrifeoficial",
      "spotify": "https://open.spotify.com/artist/3Lse4fAlOchY8msotsYMA6?si=4nKqeTSRRsSDoNj1tfvNtA",
      "twitter": "https://twitter.com/SoyAngelStrife",
      "youtube": "https://www.youtube.com/channel/UCgZSHuBjHSFADbFQOCN1ifg",
      "facebook": "https://www.facebook.com/AngelStrifeOficial",
      "linkedin": "https://mx.linkedin.com/in/angelcovablanco",
      "instagram": "https://www.instagram.com/angelstrifeoficial",
      "soundcloud": "https://soundcloud.com/contienda-records"
    },
    "bio": "Awarded as Ángel Strife for the nomination for best #RealityShow at the KidsChoiceAwards 2020 for his participation in the TheVoice México Season 9 Program with the Acunmedya production company on the television network TvAzteca, Awarded in Film Score for the Epstein Mention of the Fotogenia Festival 2020, as well as the Special Selection of the Hidalgo Film Fest 2020, Guanajuato 3.0 Experimental Film Festival 2020 & the international festival of film sur l'art \"Le Fife\" 2021 (Canada)",
    "description": "Awarded as Ángel Strife for the nomination for best #RealityShow at the KidsChoiceAwards 2020 for his participation in the TheVoice México Season 9 Program with the Acunmedya production company on the television network TvAzteca, Awarded in Film Score for the Epstein Mention of the Fotogenia Festival 2020, as well as the Special Selection of the Hidalgo Film Fest 2020, Guanajuato 3.0 Experimental Film Festival 2020 & the international festival of film sur l'art \"Le Fife\" 2021 (Canada)",
    "links": [
      {
        "id": "669fef70-1ba7-11ee-b33b-e5396daf72e9",
        "type": "spotify",
        "title": "30 Mil Pies De Altura Para Morir de Amor",
        "url": "https://open.spotify.com/album/14jqUYFbuBs0HcftvQ7jC3?si=bX_bInR7R9Wu-mC9_77Fvw&context=spotify%3Aalbum%3A14jqUYFbuBs0HcftvQ7jC3",
        "clicks": 0,
        "order": 2
      },
      {
        "id": "657440b0-1ba7-11ee-b33b-e5396daf72e9",
        "type": "instagram",
        "title": "SINCRONICIDAD",
        "url": "https://www.instagram.com/contiendarecords",
        "clicks": 5,
        "order": null,
        "description": "Sigue Nuestra Contienda"
      }
    ],
    "products": [
      {
        "id": "254c8681-1d52-11ee-b065-850167411bb1",
        "title": "\"30 Mil Pies De Altura Para Morir de Amor\" - LP",
        "name": "\"30 Mil Pies De Altura Para Morir de Amor\" - LP",
        "url": "https://angel-strife.ueniweb.com/products/merchandise/30-mil-pies-de-altura-para-morir-de-amor-lp-especial-edition-vynil-deluxe-53106871",
        "description": "Especial Edition Vynil Deluxe",
        "image": "https://athlane-file-management-prod.s3.amazonaws.com/a925f7b5-77ba-4095-b755-27b2bc221baa",
        "price": 0,
        "showPrice": false
      },
      {
        "id": "1ade72a0-5720-11ee-abe2-f1c4530bf5e3",
        "title": "Sweater Negro Gōruden Tsukoyomi (Edición Especial)",
        "name": "Sweater Negro Gōruden Tsukoyomi (Edición Especial)",
        "url": "https://angel-strife.ueniweb.com/products/merchandise/sweater-negro-goruden-tsukoyomi-edicion-especial-52958670",
        "description": "Sweater Negro Gōruden Tsukoyomi (Edición Especial) en todas las tallas con diseño Tsukoyomi (Dios de la Luna) & letras Rojas Sweater Negro. disponible en todas las tallas y entrega en territorio nacional e internacional.",
        "image": "https://athlane-file-management-prod.s3.amazonaws.com/8b2ac54c-21cd-4339-9cef-49bec35f26b4",
        "price": 0,
        "showPrice": false
      }
    ]
  }
}

Billing metadata (credits charged, cache hit/miss) is returned in the X-Captapi-Credits and X-Captapi-Cache response headers.

Request parameters

NameTypeRequiredDescription
urlstring YesPillar page URL or username. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble.
cachebooleanNoSet true to serve from the response cache (default TTL). Default false — always fetch fresh. Prefer cacheMaxAge when you need 1d–30d freshness control. Envelope includes cached + cachedAt on hits.
cacheMaxAgestringNoMax age of a cached response: 1d, 3d, 7d, 14d, or 30d. When set, enables caching with that TTL (SC cache_max_age). Envelope: cached + cachedAt.

Frequently asked questions

What does the Pillar Page API do?

The Pillar Page API lets you fetch profile or page details and audience stats from a public Pillar profile or page using one GET request to /v1/pillar/page. It returns clean JSON — no OAuth or infrastructure setup required.

How many credits does the Pillar Page API cost?

Each successful call costs 1 credit. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Failed or empty results are never charged.

Do I need a Pillar API key or OAuth?

No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.

Is the Pillar Page API suitable for production use?

Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Use it for analytics, monitoring, and content automation.

Ready to get Pillar page?

Start free with 100 credits — no credit card required.

Get your free API key