GET
/
api
/
v1
/
user
/
educations
curl --request GET \
  --url https://fresh-linkedin-scraper-api.p.rapidapi.com/api/v1/user/educations \
  --header 'x-rapidapi-key: <api-key>'
{
  "success": true,
  "cost": 1,
  "total": 12,
  "has_more": false,
  "data": [
    {
      "school": "University of California, Los Angeles",
      "date": {
        "start": "Feb 2025",
        "end": "Present"
      },
      "degree": "Bachelor of Science",
      "grade": "3.5",
      "description": "Studied computer science",
      "activities": "Member of the Computer Science Club",
      "media": [
        {
          "title": "Title",
          "description": "Description",
          "thumbnail": {
            "width": 400,
            "height": 400,
            "url": "https://media.licdn.com/dms/image/v2/D4E0BAQHjelLY2a-Mnw/company-logo_400_400/company-logo_400_400/0/1666083635765?e=1748476800&v=beta&t=V_T_yXL6Bs2HDEY-iZAKSkNype7_-7USjP2HIXo0Zv8",
            "expires_at": 1748476800000
          }
        }
      ],
      "skills": [
        "JavaScript",
        "React"
      ]
    }
  ]
}

Authorizations

x-rapidapi-key
string
header
required

Rapid API Key

Query Parameters

urn
string

User URN

Example:

"ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc"

username
string

Username. Enabling this option will consume an additional 1 request.

Example:

"simonsinek"

page
integer
default:1

Page number for pagination

Required range: x > 0
Example:

1

Response

200
application/json
Success

The response is of type object.