Get a public Linkme profile
curl --request GET \
--url https://api.scraperize.com/v1/linkme/profile \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/linkme/profile"
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/linkme/profile', 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/linkme/profile",
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/linkme/profile"
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/linkme/profile")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/linkme/profile")
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": {
"profile": {
"id": "1bf3efbf94cc4f55d3650ddc61094ac3",
"userId": "1169288",
"username": "danucd",
"displayName": "Dana",
"firstName": "Dana",
"lastName": null,
"bio": "ALL MY LINKS👇",
"url": "https://link.me/danucd",
"verified": false,
"verifiedColor": "blue",
"isAmbassador": true,
"isPrivate": false,
"isAdult": false,
"avatarUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/webp-images/user-profile/1169288/tmp-2541-1763300314455.webp",
"avatarUrlPng": "https://media.link.me/_resize/image/quality=90,format=webp/images/user-profile/1169288/tmp-2541-1763300314455.png",
"isDefaultProfilePicture": false,
"coverUrl": null,
"logoUrl": null,
"videoProfileUrl": null,
"videoProfileThumbnailUrl": null,
"views": "60.1k",
"followers": null,
"totalLinks": 7,
"theme": "dark",
"customTheme": {
"backgroundColor": null,
"backgroundImageUrl": null,
"bioBackground": null,
"mainTextColor": null,
"level1TextColor": null,
"level2TextColor": null,
"customFont": null,
"customFontUrl": null
},
"tipsEnabled": false,
"shopEnabled": false,
"qrCode": "qrCode/v2/danucd",
"referralLink": "https://meglobalapp.page.link/TFZgPYaJGeqm3mXt5",
"deeplink": "https://meglobalapp.page.link/14GsZs1EQ2KMqxjH7",
"createdAt": "2024-11-01T12:37:51.000Z",
"updatedAt": "2025-11-16T13:43:17.000Z",
"socialLinks": [
{
"platform": "Apple-music",
"url": "https://music.apple.com/ng/artist/danucd/1562315189",
"handle": "1562315189",
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Apple-Music-1.png",
"isAdult": false
},
{
"platform": "Spotify",
"url": "https://open.spotify.com/artist/0A8XmfCL2yangEtvot3peD?autoplay=true&source_application=google_assistant",
"handle": "0A8XmfCL2yangEtvot3peD",
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Spotify-1.png",
"isAdult": false
},
{
"platform": "Instagram",
"url": "https://www.instagram.com/danucd/",
"handle": "danucd",
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Instagram-1.png",
"isAdult": false
}
],
"featuredLinks": [
{
"id": 231267,
"title": "Twitch",
"description": null,
"url": "https://twitch.tv/danucd",
"platform": "twitch",
"imageUrl": null,
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/external-links/1169288/icon_1763239167644.png",
"thumbnail": "small",
"color": {
"c": "#61187bff"
},
"order": 0,
"isAdult": false,
"kind": "link"
},
{
"id": 611348,
"title": "Daily YouTube",
"description": null,
"url": "https://www.youtube.com/@DanucD2",
"platform": "youtube",
"imageUrl": null,
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/YouTube-1.png",
"thumbnail": "small",
"color": {
"c": "#e22400ff"
},
"order": 0,
"isAdult": false,
"kind": "link"
},
{
"id": 609639,
"title": "Kick",
"description": null,
"url": "https://www.kick.com/danucd",
"platform": "kick",
"imageUrl": null,
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Kick-1.png",
"thumbnail": "small",
"color": {
"p": {
"d": "#6cd97aff",
"l": "#6cd97a99"
}
},
"order": 1,
"isAdult": false,
"kind": "link"
}
],
"contactInfo": [
{
"type": "Email",
"value": "dana.danucd@gmail.com"
}
],
"gallery": [
{
"id": 673778,
"url": "https://media.link.me/_resize/image/quality=90,format=webp/images/webp-images/userImage/1169288/tmp-397-1730484089200.webp",
"order": 2,
"createdAt": "2024-11-01T18:01:30.000Z"
}
],
"sections": [
{
"section": "total_followers",
"order": 1,
"enabled": true
},
{
"section": "bio",
"order": 1,
"enabled": true
},
{
"section": "featured_links",
"order": 2,
"enabled": true
}
],
"sameAs": [
"https://music.apple.com/ng/artist/danucd/1562315189",
"https://open.spotify.com/artist/0A8XmfCL2yangEtvot3peD?autoplay=true&source_application=google_assistant",
"https://www.instagram.com/danucd/"
],
"metadata": {
"title": "Check out Dana (@danucd) on Linkme",
"description": "Discover Dana on LinkMe: ALL MY LINKS👇: Connect and see what they're passionate about.",
"image": "https://media.link.me/_resize/image/quality=90,format=webp/images/webp-images/user-profile/1169288/tmp-2541-1763300314455.webp",
"keywords": "Dana , Dana Linkme, Dana on Linkme, Dana Linkme Profile, Dana Linkme Profile Link",
"canonical": "https://link.me/danucd"
}
},
"fetchedAt": "2026-09-14T12:14:22.038Z"
},
"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"
}
}Linkme
Get a public Linkme profile
Fetches a public Linkme (link.me) profile by URL. Returns the identity (username, display name, bio, avatar, verified status), counts (profile views, followers, total links), the social-icon links, the featured link cards (with images, colors, and type), contact info, and the photo gallery.
GET
/
v1
/
linkme
/
profile
Get a public Linkme profile
curl --request GET \
--url https://api.scraperize.com/v1/linkme/profile \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/linkme/profile"
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/linkme/profile', 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/linkme/profile",
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/linkme/profile"
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/linkme/profile")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/linkme/profile")
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": {
"profile": {
"id": "1bf3efbf94cc4f55d3650ddc61094ac3",
"userId": "1169288",
"username": "danucd",
"displayName": "Dana",
"firstName": "Dana",
"lastName": null,
"bio": "ALL MY LINKS👇",
"url": "https://link.me/danucd",
"verified": false,
"verifiedColor": "blue",
"isAmbassador": true,
"isPrivate": false,
"isAdult": false,
"avatarUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/webp-images/user-profile/1169288/tmp-2541-1763300314455.webp",
"avatarUrlPng": "https://media.link.me/_resize/image/quality=90,format=webp/images/user-profile/1169288/tmp-2541-1763300314455.png",
"isDefaultProfilePicture": false,
"coverUrl": null,
"logoUrl": null,
"videoProfileUrl": null,
"videoProfileThumbnailUrl": null,
"views": "60.1k",
"followers": null,
"totalLinks": 7,
"theme": "dark",
"customTheme": {
"backgroundColor": null,
"backgroundImageUrl": null,
"bioBackground": null,
"mainTextColor": null,
"level1TextColor": null,
"level2TextColor": null,
"customFont": null,
"customFontUrl": null
},
"tipsEnabled": false,
"shopEnabled": false,
"qrCode": "qrCode/v2/danucd",
"referralLink": "https://meglobalapp.page.link/TFZgPYaJGeqm3mXt5",
"deeplink": "https://meglobalapp.page.link/14GsZs1EQ2KMqxjH7",
"createdAt": "2024-11-01T12:37:51.000Z",
"updatedAt": "2025-11-16T13:43:17.000Z",
"socialLinks": [
{
"platform": "Apple-music",
"url": "https://music.apple.com/ng/artist/danucd/1562315189",
"handle": "1562315189",
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Apple-Music-1.png",
"isAdult": false
},
{
"platform": "Spotify",
"url": "https://open.spotify.com/artist/0A8XmfCL2yangEtvot3peD?autoplay=true&source_application=google_assistant",
"handle": "0A8XmfCL2yangEtvot3peD",
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Spotify-1.png",
"isAdult": false
},
{
"platform": "Instagram",
"url": "https://www.instagram.com/danucd/",
"handle": "danucd",
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Instagram-1.png",
"isAdult": false
}
],
"featuredLinks": [
{
"id": 231267,
"title": "Twitch",
"description": null,
"url": "https://twitch.tv/danucd",
"platform": "twitch",
"imageUrl": null,
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/external-links/1169288/icon_1763239167644.png",
"thumbnail": "small",
"color": {
"c": "#61187bff"
},
"order": 0,
"isAdult": false,
"kind": "link"
},
{
"id": 611348,
"title": "Daily YouTube",
"description": null,
"url": "https://www.youtube.com/@DanucD2",
"platform": "youtube",
"imageUrl": null,
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/YouTube-1.png",
"thumbnail": "small",
"color": {
"c": "#e22400ff"
},
"order": 0,
"isAdult": false,
"kind": "link"
},
{
"id": 609639,
"title": "Kick",
"description": null,
"url": "https://www.kick.com/danucd",
"platform": "kick",
"imageUrl": null,
"iconUrl": "https://media.link.me/_resize/image/quality=90,format=webp/images/style/icons/v5.0/Kick-1.png",
"thumbnail": "small",
"color": {
"p": {
"d": "#6cd97aff",
"l": "#6cd97a99"
}
},
"order": 1,
"isAdult": false,
"kind": "link"
}
],
"contactInfo": [
{
"type": "Email",
"value": "dana.danucd@gmail.com"
}
],
"gallery": [
{
"id": 673778,
"url": "https://media.link.me/_resize/image/quality=90,format=webp/images/webp-images/userImage/1169288/tmp-397-1730484089200.webp",
"order": 2,
"createdAt": "2024-11-01T18:01:30.000Z"
}
],
"sections": [
{
"section": "total_followers",
"order": 1,
"enabled": true
},
{
"section": "bio",
"order": 1,
"enabled": true
},
{
"section": "featured_links",
"order": 2,
"enabled": true
}
],
"sameAs": [
"https://music.apple.com/ng/artist/danucd/1562315189",
"https://open.spotify.com/artist/0A8XmfCL2yangEtvot3peD?autoplay=true&source_application=google_assistant",
"https://www.instagram.com/danucd/"
],
"metadata": {
"title": "Check out Dana (@danucd) on Linkme",
"description": "Discover Dana on LinkMe: ALL MY LINKS👇: Connect and see what they're passionate about.",
"image": "https://media.link.me/_resize/image/quality=90,format=webp/images/webp-images/user-profile/1169288/tmp-2541-1763300314455.webp",
"keywords": "Dana , Dana Linkme, Dana on Linkme, Dana Linkme Profile, Dana Linkme Profile Link",
"canonical": "https://link.me/danucd"
}
},
"fetchedAt": "2026-09-14T12:14:22.038Z"
},
"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 Linkme profile URL, e.g. https://link.me/danucd.
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