Skip to main content
GET
/
api
/
v1
/
search
Search LinkedIn profiles
curl --request GET \
  --url https://api.fetchin.io/api/v1/search \
  --header 'X-API-Key: <api-key>'
[
  {
    "name": "John Doe",
    "profileUrl": "https://www.linkedin.com/in/johndoe",
    "profilePictureUrl": "https://media.licdn.com/dms/image/...",
    "headline": "Senior Software Engineer at Google",
    "location": "San Francisco, CA"
  },
  {
    "name": "Jane Smith",
    "profileUrl": "https://www.linkedin.com/in/janesmith",
    "profilePictureUrl": "https://media.licdn.com/dms/image/...",
    "headline": "Software Engineer at Microsoft",
    "location": "Seattle, WA"
  },
  {
    "name": "Alex Johnson",
    "profileUrl": "https://www.linkedin.com/in/alexjohnson",
    "profilePictureUrl": "https://media.licdn.com/dms/image/...",
    "headline": "Lead Software Engineer at Amazon",
    "location": "New York, NY"
  }
]

Endpoint

GET /api/v1/search

Authentication

Include your API key in the request header:
X-API-Key: your-api-key-here

Parameters

keyword
string
required
Search keyword to find LinkedIn profiles.Examples:
  • software engineer
  • marketing manager
  • John Doe
  • Google

Response

results
array
Array of matching LinkedIn profiles

Example Request

curl -X GET "https://api.fetchin.io/api/v1/search?keyword=software%20engineer" \
  -H "X-API-Key: your-api-key-here"

Example Response

[
  {
    "name": "John Doe",
    "profileUrl": "https://www.linkedin.com/in/johndoe",
    "profilePictureUrl": "https://media.licdn.com/dms/image/...",
    "headline": "Senior Software Engineer at Google",
    "location": "San Francisco, CA"
  },
  {
    "name": "Jane Smith",
    "profileUrl": "https://www.linkedin.com/in/janesmith",
    "profilePictureUrl": "https://media.licdn.com/dms/image/...",
    "headline": "Software Engineer at Microsoft",
    "location": "Seattle, WA"
  },
  {
    "name": "Alex Johnson",
    "profileUrl": "https://www.linkedin.com/in/alexjohnson",
    "profilePictureUrl": "https://media.licdn.com/dms/image/...",
    "headline": "Lead Software Engineer at Amazon",
    "location": "New York, NY"
  }
]

Notes

This endpoint counts as 1 request toward your monthly quota. Failed requests (errors) do not count against your quota.
Search results are fetched in real-time from LinkedIn. Response times may vary based on the complexity of the search.
Use specific keywords for better results. Combine name, title, or company for more targeted searches.

Use Cases

Lead generation

Find potential leads matching specific job titles or industries

Recruitment

Search for candidates with specific skills or experience

Networking

Discover professionals in your industry or area

Research

Find experts or thought leaders in specific domains

Authorizations

X-API-Key
string
header
required

Query Parameters

keyword
string
required

Search keyword (name, title, company, etc.)

Example:

"software engineer"

Response

Successfully fetched search results

name
string
required

Full name of the LinkedIn member

Example:

"John Doe"

profileUrl
string
required

LinkedIn profile URL

Example:

"https://www.linkedin.com/in/johndoe"

profilePictureUrl
string

Profile picture URL

Example:

"https://media.licdn.com/dms/image/..."

headline
string

Professional headline

Example:

"Software Engineer at Tech Company"

location
string

Geographic location

Example:

"San Francisco, CA"