Getting Started

LinkdAPI Quick start guide

Published July 30, 2025
Updated July 31, 2025
1 min read
quick_start

Get Started in 60 Seconds

  1. Get Your API Key
    Sign up here → Verify email → Grab your key from Dashboard

  2. Make Your First API Call

curl -X GET "https://linkdapi.com/api/v1/profile/overview?username=hnaser" \
  -H "X-linkdapi-apikey: YOUR_API_KEY"

Authentication

Add this header to every request:

X-linkdapi-apikey: YOUR_API_KEY

⚡ Pro Tip:
Always check the success field before processing data

Popular Use Cases

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);
  }
});

Using Python

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())

Using PHP

<?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;

Resources

Was this article helpful?

Your feedback helps us improve our documentation

Still need help? Our support team is here for you.