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
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | No* | Person's name |
company_name | string | No* | Company name |
job_title | string | No* | Job title |
location | string | No* | Location |
keywords | string | No* | Additional search keywords |
limit | integer | No | Max profiles to return (1-5, default: 3) |
*At least one search parameter is required.
Example Request
- cURL
- Python
- Node.js
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
}'
import requests
url = "https://api.infoplug.io/google-full-profiles"
headers = {
"Content-Type": "application/json",
"X-INFOPLUG-API-KEY": "YOUR_API_KEY"
}
data = {
"name": "John Doe",
"company_name": "Google",
"job_title": "Software Engineer",
"limit": 3
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch('https://api.infoplug.io/google-full-profiles', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-INFOPLUG-API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
name: 'John Doe',
company_name: 'Google',
job_title: 'Software Engineer',
limit: 3
})
});
const data = await response.json();
console.log(data);
Example Response
- 200 OK
- 400 Bad Request
{
"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"
}
]
}
]
}
{
"message": "invalid_parameter",
"parameter": "payload",
"details": "At least one search parameter is required"
}