Skip to main content

Google Profiles

POST /google-profiles

Search for LinkedIn profile URLs using Google search.

Pricing

1 credit per call.

Parameters

ParameterTypeRequiredDescription
namestringNo*Person's name
companystringNo*Company name
job_titlestringNo*Job title
locationstringNo*Location
keywordstringNo*Additional search keywords
pageintegerNoPage number (default: 1)
name_in_urlstringNoRequire name in URL ("true" or "false", default: "true")

*At least one search parameter is required.

Example Request

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

Example Response

{
"data": [
{
"name": "John Doe",
"linkedin_url": "https://www.linkedin.com/in/johndoe/",
"snippet": "Software Engineer at Google..."
}
]
}