Google Profiles
POST /google-profiles
Search for LinkedIn profile URLs using Google search.
Pricing
1 credit per call.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | No* | Person's name |
company | string | No* | Company name |
job_title | string | No* | Job title |
location | string | No* | Location |
keyword | string | No* | Additional search keywords |
page | integer | No | Page number (default: 1) |
name_in_url | string | No | Require name in URL ("true" or "false", default: "true") |
*At least one search parameter is required.
Example Request
- cURL
- Python
- Node.js
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"
}'
import requests
url = "https://api.infoplug.io/google-profiles"
headers = {
"Content-Type": "application/json",
"X-INFOPLUG-API-KEY": "YOUR_API_KEY"
}
data = {
"name": "John Doe",
"company": "Google",
"job_title": "Software Engineer"
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch('https://api.infoplug.io/google-profiles', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-INFOPLUG-API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
name: 'John Doe',
company: 'Google',
job_title: 'Software Engineer'
})
});
const data = await response.json();
console.log(data);
Example Response
- 200 OK
- 400 Bad Request
{
"data": [
{
"name": "John Doe",
"linkedin_url": "https://www.linkedin.com/in/johndoe/",
"snippet": "Software Engineer at Google..."
}
]
}
{
"message": "invalid_parameter",
"parameter": "payload",
"details": "At least one search parameter is required"
}