LinkedIn API Tools Developer Resources

Access powerful tools and libraries to build applications using LinkedIn's professional networking API.

Developer Tools

REST API Explorer

Interactive testing environment for prototyping and debugging API calls.

Open explorer

OAuth Tools

Authentication and token management system for secure API access.

Learn OAuth

Rate Limiting

Configure and monitor API rate limits for applications with high volume traffic.

View limits

SDKs and Libraries

Node.js SDK

Official server-side SDK for JavaScript based application development.

Get started

Python Client

Python integration for accessing LinkedIn APIs with simple method calls.

Install with pip

Android SDK

Mobile development library for integrating LinkedIn features into Android apps.

Download SDK

Using LinkedIn API

JavaScript Example - User Profile Request

// Get current user's profile data
GET https://api.linkedin.com/v2/me
Authorization: Bearer 

        
Python Example - Fetch Connections

import requests

response = requests.get(
    "https://api.linkedin.com/v2/connections",
    headers={"Authorization": "Bearer " + token}
)
print(response.json())