Get Recommendations Given
GET /get-recommendations-given
Retrieve recommendations that a profile has given to 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-given?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-given"
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-given?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": [
{
"recommendee_name": "Bob Johnson",
"recommendee_title": "Software Developer",
"recommendee_linkedin_url": "https://www.linkedin.com/in/bobjohnson/",
"relationship": "John managed Bob directly",
"text": "Bob is a talented developer..."
}
]
}
}
{
"message": "invalid_parameter",
"parameter": "linkedin_url",
"details": "LinkedIn URL is required"
}