LinkedIn Profile Retrieval

POST

/api/linkedin-profile-retrieval

Retrieve LinkedIn profile information

Request Body

URL of the LinkedIn profile to retrieve.

linkstring

Example: "https://www.linkedin.com/in/shayannadeem"Format: "uri"
Status codeDescription
200Successfully retrieved profile information
400Bad request
500Internal server error
curl
curl -X POST "https://tinyapis.io/api/linkedin-profile-retrieval" \
  -d '{
  "link": "https://www.linkedin.com/in/shayannadeem"
}'
Example Response
{
  "profile": {
    "name": "Shayan Nadeem",
    "work_history": "[ { \"company_name\": \"Company-name · Full-time\", \"role\": \"CEO & Founder\", \"date\": \"Apr 2024 - Present · 4 mos\" } ]",
    "about": "About",
    "bio": "Founder of tinyapis.io",
    "profile_img": "link"
  }
}