Get Open to Work Status
GET /get-open-to-work-status
Check if a LinkedIn profile has the "Open to Work" status enabled.
Pricing
1 credit per call.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
linkedin_url | string | Yes | LinkedIn profile URL |
Example Request
- cURL
- Python
- Node.js
curl --request GET \
--url 'https://api.infoplug.io/get-open-to-work-status?linkedin_url=https://www.linkedin.com/in/example/' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'
import requests
url = "https://api.infoplug.io/get-open-to-work-status"
params = {
"linkedin_url": "https://www.linkedin.com/in/example/"
}
headers = {
"X-INFOPLUG-API-KEY": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
const response = await fetch(
'https://api.infoplug.io/get-open-to-work-status?linkedin_url=https://www.linkedin.com/in/example/',
{
headers: {
'X-INFOPLUG-API-KEY': 'YOUR_API_KEY'
}
}
);
const data = await response.json();
console.log(data);
Example Response
- 200 OK
- 400 Bad Request
{
"data": {
"open_to_work": true
}
}
{
"message": "invalid_parameter",
"parameter": "linkedin_url",
"details": "LinkedIn URL is required"
}