The Linkedin Profiles API lets you find up to 500 Linkedin user profiles - all of which are based on your keyword/search query. Its best use-case is to find profiles that have your query in bio, profile subtitle, or have engaged with content related to your search term within the past year.
1 credit / profile
for successful requestsPricing Note:
While we aim to provide you with the exact number of results you request. In some cases, certain restrictions will cause the number of returned results to be less than requested. Example: No more rows to be found OR duplicate removal.
You will only pay per result delivered. If you request
50
profiles and get49
, you will only be charged for49
.
Result Relevancy
Profiles are returned based on their relevancy to your search query. The more relevant a profile is, the higher it will be in the returned response.
To keep your query from breaking or returning unexpected results, we sanitize your input as follows:
Leading and trailing empty spaces are removed: ' foo '
--> 'foo'
Multiple consecutive spaces are collapsed: 'foo bar'
--> 'foo bar'
The characters " : ( )
are not allowed
API Endpoint: POST https://api.serpgrid.dev/v1/serps/linkedin-profiles
Required headers: X-API-KEY
and Content-Type
Parameter | Description |
---|---|
query | Your search term The following characters are NOT allowed: " : ( ) Min length: 3 characters Max length: 35 characters |
strict | Boolean field denoting whether you want the search to be an exact character matchDefault: false Accepts: true, 1 , false, 0 |
results | The maximum number of rows to be returned if found Must be provided as a multiple of 10 Default: 10 Min: 10 & Max: 500 |
Strictness
Strictness indicates whether the search engine should use exact character matching or keep the default fuzzy search - by default strictness is
disabled
.Ex. If you're searching for profiles marked as
SEO Consultant
, enabling strictness may be a good idea. However, when looking forSEO Consultant in Canada
, keeping it disabled will yield more results as there are very few profiles with that exact sequence of characters.
Execution Time:
Due to the nature of how we request, parse, and sanitize these results in realtime for you, the larger number of results you request, the longer this endpoint will take.
Our target running time for the maximum result count of
500
is~4-7 seconds
.
For best results, try searching for segmented target audience groups such as SEO Consultant
or Web Designer
.
Note: Running the same query multiple times will often generated identical results. You are therefore encouraged to find a set of keywords or queries that are of interest and run them in series.
Example: If you're interested in finding SEO consultant
, you can run that as your first query, and later on run a separate request for SEO Agency
or perhaps SEO Consultant New York
.
The following headers will also be returned as part of the response to you:
X-Credits-Remaining
The number of credits that remain in your accountX-Credits-Expire
A datetime string with the expiration dateX-Credits-Used
The number of credits the operation consumedErrors are handled in line with our Error Rules. Please make sure to read it carefully and follow the instructions for the best experience possible.