GET
https://search.linkd.inc
/
api
/
search
/
users
curl --request GET \
  --url https://search.linkd.inc/api/search/users \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "profile": {
        "id": "3917303",
        "name": "Aaron Kim",
        "location": "Austin, Texas, United States",
        "headline": "SWE @ Apple | CS @ Purdue",
        "description": "Hi I'm Aaron :)\n\nCheck out my site to learn more about myself and for a link to my resume: https://aaronw-kim.vercel.app\n\nI am a December 2023 graduate from Purdue University with a major in Computer Science and a concentration in software engineering.",
        "title": "Software Engineer",
        "profile_picture_url": "https://media.licdn.com/dms/image/v2/D5603AQEul7ZkprNrUA/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1729304319873?e=1742428800&v=beta&t=YjhrG1nsFX8AIuncg3tx-MgrwjB2QTiMq_KE4m-gKmY",
        "linkedin_url": "https://www.linkedin.com/in/akim0928",
        "twitter_handle": "",
        "websites": [],
        "criteria": {
          "Works at FAANG.": "YES",
          "Works on AI.": "MAYBE"
        }
      },
      "experience": [
        {
          "title": "Software Engineer",
          "company_name": "Apple",
          "start_date": "2024-11-01T00:00:00",
          "end_date": "1970-01-01T00:00:00",
          "description": "Apple IS&T ETS",
          "location": "Austin, Texas, United States",
          "company_logo": "https://media.licdn.com/dms/image/v2/C585BAQHdAaarsO-eyA/company-logo_400_400/company-logo_400_400/0/1630637844948/apple_logo?e=1749686400&v=beta&t=xl2B5XMhx6O1lVH2KoNjnQRgpT5JVzVnRdLMFb3bMWM"
        }
      ],
      "education": [
        {
          "degree": "Bachelor of Science - BS",
          "field_of_study": "Computer Science",
          "school_name": "Purdue University",
          "school_logo": "https://media.licdn.com/dms/image/v2/C4E0BAQGUO9Kvy1lfEA/company-logo_400_400/company-logo_400_400/0/1630626191299/purdue_university_logo?e=1749686400&v=beta&t=sHt7eFLSWMZmic2PX2MqsduEBM8wVlx2zXaa-yk1PaY",
          "start_date": "2020-08-01T00:00:00",
          "end_date": "2023-12-01T00:00:00",
          "description": ""
        }
      ]
    }
  ],
  "total": 1,
  "query": "People working on AI at FAANG"
}

Authorizations

Authorization
string
header
required

API key must be provided as a Bearer token in the Authorization header

Query Parameters

query
string
required

The search query string. Examples:

  • People working on AI at FAANG
  • People who started companies in Web3 or crypto
  • PhDs now working at FAANG companies
  • Who works at a VC firm?
  • CS graduates working on autonomous vehicles
  • People working on biotech in the Bay Area
limit
integer
default:10

Maximum number of results to return.

Required range: x <= 30
school
string[]

Filter results by school name(s). Can provide multiple.

acceptance_threshold
integer
default:85

Minimum match score threshold (0-100). Defaults to 85.

Required range: 0 <= x <= 100

Response

200
application/json

Successful search operation

The response is of type object.