Skip to main content
POST
/
api
/
v1
/
linkedin
/
profile
Get Profile
curl --request POST \
  --url https://api.example.com/api/v1/linkedin/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "identifier": "<string>"
}
'
{
  "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
identifier
string
required
Required string length: 1 - 500

Response

Successful Response

success
boolean
required
data
Data · object
error
string | null