Get a public Lnk.Bio page
curl --request GET \
--url https://api.scraperize.com/v1/linkbio/page \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/linkbio/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/linkbio/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/linkbio/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/linkbio/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/linkbio/page")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/linkbio/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": "tamirawill",
"userId": "-1123819",
"name": "Tamira",
"pronouns": "(they/them)",
"displayName": "Tamira",
"url": "https://lnk.bio/tamirawill",
"avatarUrl": "https://s3.us-west-2.amazonaws.com/cdn.lnk.bio/profilepics/-1123819_20210219387.jpg",
"verified": true,
"theme": {
"headingsColor": "#8E6859",
"bioColor": "#8E6859",
"iconsColor": "#8E6859",
"iconTextColor": "#FAFAFA",
"backgroundColor": "#FCFAF7",
"boxColor": "#F8EDDE",
"iconBackgroundColor": "#221F1F"
},
"socialLinks": [
{
"platform": "Instagram",
"network": "SOCIAL_IG",
"url": "https://instagram.com/tamirawill"
},
{
"platform": "YouTube",
"network": "SOCIAL_YT",
"url": "https://www.youtube.com/channel/UCk8ujbLrxJBoHKsE5hpfcgA"
},
{
"platform": "TikTok",
"network": "SOCIAL_TK",
"url": "https://tiktok.com/@tamirawill"
}
],
"links": [
{
"id": "7336276",
"title": "Test",
"url": "https://www.google.com",
"image": "https://cdn2.lnk.bi/uploads/7336276_20240419182619257-1024.jpg?lu=2024-04-19+10%3A26%3A24",
"isMultiLink": true
},
{
"id": "4696075",
"title": "Fitness Shoes",
"url": "https://www.instagram.com/p/CD0ysqPHMS6/?hl=en",
"image": "https://cdn2.lnk.bi/uploads/4696075_20230511152546109-1024.jpg?lu=2024-04-19+10%3A23%3A25",
"isMultiLink": false
},
{
"id": "4695740",
"title": "Post",
"url": "https://www.google.com",
"image": "https://cdn2.lnk.bi/uploads/4695740_20230511140632685-1024.jpg?lu=2024-04-19+10%3A23%3A25",
"isMultiLink": false
}
]
},
"fetchedAt": "2026-09-14T12:14:39.529Z"
},
"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"
}
}Linkbio
Get a public Lnk.Bio page
Fetches a public Lnk.Bio (lnk.bio) link-in-bio page by URL: the profile (username, name, pronouns, avatar, verified status), the custom theme colors, the social-icon row, and the main bio links (title, url, thumbnail).
GET
/
v1
/
linkbio
/
page
Get a public Lnk.Bio page
curl --request GET \
--url https://api.scraperize.com/v1/linkbio/page \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/linkbio/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/linkbio/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/linkbio/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/linkbio/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/linkbio/page")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/linkbio/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": "tamirawill",
"userId": "-1123819",
"name": "Tamira",
"pronouns": "(they/them)",
"displayName": "Tamira",
"url": "https://lnk.bio/tamirawill",
"avatarUrl": "https://s3.us-west-2.amazonaws.com/cdn.lnk.bio/profilepics/-1123819_20210219387.jpg",
"verified": true,
"theme": {
"headingsColor": "#8E6859",
"bioColor": "#8E6859",
"iconsColor": "#8E6859",
"iconTextColor": "#FAFAFA",
"backgroundColor": "#FCFAF7",
"boxColor": "#F8EDDE",
"iconBackgroundColor": "#221F1F"
},
"socialLinks": [
{
"platform": "Instagram",
"network": "SOCIAL_IG",
"url": "https://instagram.com/tamirawill"
},
{
"platform": "YouTube",
"network": "SOCIAL_YT",
"url": "https://www.youtube.com/channel/UCk8ujbLrxJBoHKsE5hpfcgA"
},
{
"platform": "TikTok",
"network": "SOCIAL_TK",
"url": "https://tiktok.com/@tamirawill"
}
],
"links": [
{
"id": "7336276",
"title": "Test",
"url": "https://www.google.com",
"image": "https://cdn2.lnk.bi/uploads/7336276_20240419182619257-1024.jpg?lu=2024-04-19+10%3A26%3A24",
"isMultiLink": true
},
{
"id": "4696075",
"title": "Fitness Shoes",
"url": "https://www.instagram.com/p/CD0ysqPHMS6/?hl=en",
"image": "https://cdn2.lnk.bi/uploads/4696075_20230511152546109-1024.jpg?lu=2024-04-19+10%3A23%3A25",
"isMultiLink": false
},
{
"id": "4695740",
"title": "Post",
"url": "https://www.google.com",
"image": "https://cdn2.lnk.bi/uploads/4695740_20230511140632685-1024.jpg?lu=2024-04-19+10%3A23%3A25",
"isMultiLink": false
}
]
},
"fetchedAt": "2026-09-14T12:14:39.529Z"
},
"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 Lnk.Bio profile URL, e.g. https://lnk.bio/tamirawill.
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