Get Recommendations Received
GET /get-recommendations-received
Retrieve recommendations that a profile has received from others.
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-recommendations-received?linkedin_url=https://www.linkedin.com/in/example/' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'
import requests
url = "https://api.infoplug.io/get-recommendations-received"
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-recommendations-received?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": {
"recommendations": [
{
"recommender_name": "Jane Smith",
"recommender_title": "Engineering Manager",
"recommender_linkedin_url": "https://www.linkedin.com/in/janesmith/",
"relationship": "Jane managed John directly",
"text": "John is an exceptional engineer..."
}
]
}
}
{
"message": "invalid_parameter",
"parameter": "linkedin_url",
"details": "LinkedIn URL is required"
}