REST API Explorer
Interactive testing environment for prototyping and debugging API calls.
Open explorerAccess powerful tools and libraries to build applications using LinkedIn's professional networking API.
Interactive testing environment for prototyping and debugging API calls.
Open explorerAuthentication and token management system for secure API access.
Learn OAuthConfigure and monitor API rate limits for applications with high volume traffic.
View limitsOfficial server-side SDK for JavaScript based application development.
Get startedPython integration for accessing LinkedIn APIs with simple method calls.
Install with pipMobile development library for integrating LinkedIn features into Android apps.
Download SDK
// Get current user's profile data
GET https://api.linkedin.com/v2/me
Authorization: Bearer
import requests
response = requests.get(
"https://api.linkedin.com/v2/connections",
headers={"Authorization": "Bearer " + token}
)
print(response.json())