Skip to main content

Get Recommendations Given

GET /get-recommendations-given

Retrieve recommendations that a profile has given to others.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
linkedin_urlstringYesLinkedIn profile URL

Example Request

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'

Example Response

{
"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..."
}
]
}
}