Skip to main content

Google Full Profiles

POST /google-full-profiles

Search for LinkedIn profiles using Google and return enriched profile data.

Pricing

1 credit per profile returned (up to limit).

Parameters

ParameterTypeRequiredDescription
namestringNo*Person's name
company_namestringNo*Company name
job_titlestringNo*Job title
locationstringNo*Location
keywordsstringNo*Additional search keywords
limitintegerNoMax profiles to return (1-5, default: 3)

*At least one search parameter is required.

Example Request

curl --request POST \
--url https://api.infoplug.io/google-full-profiles \
--header 'Content-Type: application/json' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY' \
--data '{
"name": "John Doe",
"company_name": "Google",
"job_title": "Software Engineer",
"limit": 3
}'

Example Response

{
"data": [
{
"full_name": "John Doe",
"linkedin_url": "https://www.linkedin.com/in/johndoe/",
"headline": "Software Engineer at Google",
"location": "San Francisco, CA",
"profile_picture": "https://media.licdn.com/...",
"experience": [
{
"title": "Software Engineer",
"company": "Google",
"start_date": "2020",
"end_date": "Present"
}
]
}
]
}