Skip to main content
POST
/
api
/
linkedin
/
search
/
educations
/linkedin/search/educations
curl --request POST \
  --url https://api.anysite.io/api/linkedin/search/educations \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "name": "Harvard",
  "count": 123
}'
[
  {
    "@type": "LinkedinSearchEducation",
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "name": "<string>",
    "headline": "<string>",
    "image": "<string>"
  }
]

Headers

access-token
string
required

Body

application/json
name
string
required

Education name

Examples:

"Harvard"

count
integer
required

Max result count

Required range: x > 0
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

urn
object
required
name
string
required
@type
string
default:LinkedinSearchEducation
headline
string | null
image
string | null
I