Getting Started
Person
Person Activities
Workspace
Person
Recommendations
This operation allows you to get recommendations data from a LinkedIn profile. It returns recommendations information with credits and rate limit information. This operation consumes 1 credit.
GET
/
v1
/
enrichment
/
recommendations
Get Recommendations
Copy
curl --request GET \
--url https://api.scrapin.io/v1/enrichment/recommendations
Copy
{
"success": true,
"credits_left": 90000,
"rate_limit_left": 19000,
"daily_rate_limit_left": 19000,
"minute_rate_limit_left": 499,
"next_minute_rate_limit_reset": "2024-01-15T10:31:00Z",
"recommendations": [
{
"caption": "August 18, 2020, Michael was Tom's client",
"description": "Michael is very talented when it comes to founding and growing tech businesses, it's very impressive what he has achieved to date. I worked with him to implement a number of outbound marketing campaigns that delivered on both new leads and revenue. He was a joy to work with, his energy and enthusiasm was infectious. I'm sure we'll work together again in the near future.",
"authorFullname": "Tom Kelly",
"authorUrl": "https://www.linkedin.com/in/tomkelly25"
},
{
"caption": "February 4, 2016, Catalina worked with Michael on the same team",
"description": "Michael is an exceptionally well skilled business and sales person. His ability to make people feel good, comfortable and cared for, during the sales process, is truly remarkable. The social skills, combined with a genuine curiosity and passion for his job, also make him a great co-worker. I would personally recommend him to any growing startup who needs a truly talented biz dev guy, with a passion for all things tech. I hope to work with Michael in the future, but above all, I will be grateful for having learned from him what it is like to be highly engaging and personable as a professional.",
"authorFullname": "Catalina B.",
"authorUrl": "https://www.linkedin.com/in/catalinabutnaru"
},
{
"caption": "October 28, 2015, Dr. Christian worked with Michael on the same team",
"description": "I had the pleasure to work with Michael in a team for commodity market analysis. Michael takes a holistic way of thinking but keeps an eye on specific details of a topic. He is not afraid to take unknown paths and think in new directions. Very impressive is his continuous motivation, which supports the overall team spirit. It is simply inspiring to work with such a collaborative and diligent personality. Michael is an enrichment for every employer.",
"authorFullname": "Dr. Christian Muntz, CFA",
"authorUrl": "https://www.linkedin.com/in/dr-christian-muntz-cfa-b4b16b92"
}
]
}
Authorizations
This required parameter is a string. It represents the APIKEY obtained from the developer dashboard.
Query Parameters
This required parameter is a string. It represents the LinkedIn URL of the person with this format: https://www.linkedin.com/in/xxxxxxxxxxxxx/.
Response
200
application/json
The endpoint returns recommendations information.
The response is of type object
.
Get Recommendations
Copy
curl --request GET \
--url https://api.scrapin.io/v1/enrichment/recommendations
Copy
{
"success": true,
"credits_left": 90000,
"rate_limit_left": 19000,
"daily_rate_limit_left": 19000,
"minute_rate_limit_left": 499,
"next_minute_rate_limit_reset": "2024-01-15T10:31:00Z",
"recommendations": [
{
"caption": "August 18, 2020, Michael was Tom's client",
"description": "Michael is very talented when it comes to founding and growing tech businesses, it's very impressive what he has achieved to date. I worked with him to implement a number of outbound marketing campaigns that delivered on both new leads and revenue. He was a joy to work with, his energy and enthusiasm was infectious. I'm sure we'll work together again in the near future.",
"authorFullname": "Tom Kelly",
"authorUrl": "https://www.linkedin.com/in/tomkelly25"
},
{
"caption": "February 4, 2016, Catalina worked with Michael on the same team",
"description": "Michael is an exceptionally well skilled business and sales person. His ability to make people feel good, comfortable and cared for, during the sales process, is truly remarkable. The social skills, combined with a genuine curiosity and passion for his job, also make him a great co-worker. I would personally recommend him to any growing startup who needs a truly talented biz dev guy, with a passion for all things tech. I hope to work with Michael in the future, but above all, I will be grateful for having learned from him what it is like to be highly engaging and personable as a professional.",
"authorFullname": "Catalina B.",
"authorUrl": "https://www.linkedin.com/in/catalinabutnaru"
},
{
"caption": "October 28, 2015, Dr. Christian worked with Michael on the same team",
"description": "I had the pleasure to work with Michael in a team for commodity market analysis. Michael takes a holistic way of thinking but keeps an eye on specific details of a topic. He is not afraid to take unknown paths and think in new directions. Very impressive is his continuous motivation, which supports the overall team spirit. It is simply inspiring to work with such a collaborative and diligent personality. Michael is an enrichment for every employer.",
"authorFullname": "Dr. Christian Muntz, CFA",
"authorUrl": "https://www.linkedin.com/in/dr-christian-muntz-cfa-b4b16b92"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.