
Get Your API Key
Sign up here → Verify email → Grab your key from Dashboard
Make Your First API Call
curl -X GET "https://linkdapi.com/api/v1/profile/overview?username=hnaser" \
-H "X-linkdapi-apikey: YOUR_API_KEY"
Add this header to every request:
X-linkdapi-apikey: YOUR_API_KEY
⚡ Pro Tip:
Always check thesuccessfield before processing data
Get Profile Data
fetch('https://linkdapi.com/api/v1/profile/full?username=hnaser', {
headers: {
'X-linkdapi-apikey': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => {
if (data.success) {
// Process your data
} else {
console.error("API Error:", data.message);
}
});
import requests
url = "https://linkdapi.com/api/v1/profile/overview?username=hnaser"
headers = {
"X-linkdapi-apikey": "your_api_key_here"
}
response = requests.get(url, headers=headers)
print(response.json())
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://linkdapi.com/api/v1/profile/overview?username=hnaser",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
"X-linkdapi-apikey: your_api_key_here"
],
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Your feedback helps us improve our documentation
Still need help? Our support team is here for you.