logo
SearchLinkedIn Profile Search

LinkedIn Profile Search

Search LinkedIn profiles by name, company, title, location, and more. Supports fuzzy name matching and pagination. All query parameters are optional but at least one filter should be provided.

Pricing: 0.1 credit per profile returned (billed per page).

curl -X GET "https://v3-api.texau.com/api/v1/profile_search?search=Satya Nadella&firstName=John Doe&lastName=John Doe&title=Co-Founder&currentCompany=13018048&pastCompany=example_string&school=example_string&location=San Francisco&geoId=90000084&industryId=96&keywordsCompany=example_string&keywordsSchool=example_string&followerOf=example_string&page=25" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY"
{
  "elements": [
    {
      "publicIdentifier": "janniseller",
      "id": "ACoAAAvXEYIB-lrqOxPPl65MtZ0cDyZTBk_Q3dw",
      "name": "Jannis Eller",
      "position": "Helping growing businesses find the right talent | Co-Founder @ Jomigo",
      "location": {
        "linkedinText": "Berlin"
      },
      "linkedinUrl": "https://www.linkedin.com/in/janniseller",
      "photo": "https://media.licdn.com/dms/image/v2/D5603AQESttFchk0bfg/profile-displayphoto-scale_100_100/0/1773311020711",
      "hidden": false
    },
    {
      "publicIdentifier": null,
      "id": "ACr___-spM4BrMlYZsWDBPmx0li6zZw1QccuGW0",
      "name": "LinkedIn Member",
      "position": "Co-founder @LeadsFactory",
      "location": {
        "linkedinText": "France"
      },
      "linkedinUrl": null,
      "photo": "https://media.licdn.com/dms/image/v2/D4E03AQHMbj6z8IgbgA/profile-displayphoto-shrink_100_100/0/1700436372695",
      "hidden": true
    }
  ],
  "pagination": {
    "totalPages": 11,
    "totalElements": 107,
    "pageNumber": 1,
    "previousElements": 0,
    "pageSize": 10,
    "totalResultCount": 107
  },
  "status": 200,
  "error": null,
  "query": {
    "currentCompany": "13018048",
    "title": "Co-Founder"
  }
}
GET
/profile_search
GET
API Key (header: x-api-key)
x-api-keystring
Required

Your TexAu API key. Contact TexAu to obtain one.

Your TexAu API key. Contact TexAu to obtain one.
query
firstNamestring

Strict first-name filter.

query
lastNamestring

Strict last-name filter.

query
titlestring

Filter by job title.

query
currentCompanystring

LinkedIn company ID or company URL. Comma-separated for multiple.

query
pastCompanystring

Past company ID or URL. Comma-separated for multiple.

query
schoolstring

School ID or URL. Comma-separated for multiple.

query
locationstring

Location text (LinkedIn autocomplete). Use geoId for precision.

query
geoIdstring

LinkedIn Geo ID. Overrides location when both are provided.

query
industryIdstring

LinkedIn industry ID. Comma-separated for multiple.

query
keywordsCompanystring

Keyword filter on company name.

query
keywordsSchoolstring

Keyword filter on school name.

query
followerOfstring

Filter profiles that follow a LinkedIn profile. Profile URL or ID. Comma-separated for multiple.

query
pageinteger

Page number for pagination (1-based).

Request Preview
Response

Response will appear here after sending the request

Authentication

header
x-api-keystring
Required

API Key for authentication. Your TexAu API key. Contact TexAu to obtain one.

Query Parameters

firstNamestring

Strict first-name filter.

lastNamestring

Strict last-name filter.

titlestring

Filter by job title.

currentCompanystring

LinkedIn company ID or company URL. Comma-separated for multiple.

pastCompanystring

Past company ID or URL. Comma-separated for multiple.

schoolstring

School ID or URL. Comma-separated for multiple.

locationstring

Location text (LinkedIn autocomplete). Use geoId for precision.

geoIdstring

LinkedIn Geo ID. Overrides location when both are provided.

industryIdstring

LinkedIn industry ID. Comma-separated for multiple.

keywordsCompanystring

Keyword filter on company name.

keywordsSchoolstring

Keyword filter on school name.

followerOfstring

Filter profiles that follow a LinkedIn profile. Profile URL or ID. Comma-separated for multiple.

pageinteger

Page number for pagination (1-based).

Responses

elementsarray

List of matching profiles (billed at 0.1 credit per element).

paginationobject
statusstring

HTTP status from upstream provider.

errorstring

Error message (null on success).

queryobject

Echo of the resolved query parameters.