Skip to main content
POST
/
api
/
v1
/
linkedin
/
search
Search Linkedin
curl --request POST \
  --url https://api.example.com/api/v1/linkedin/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "query": "<string>",
  "category": "people"
}
'
{
  "success": true,
  "data": {},
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.bavlio.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
account_id
string<uuid>
required
query
string
required
Required string length: 1 - 500
category
string
default:people
Allowed value: "people"

Response

Successful Response

success
boolean
required
data
Data · object
error
string | null