Skip to main content

Overview

Extracts structured profile data from LinkedIn URLs. Returns personal information, work history, education, skills, posts, and more. Output can be structured JSON or Markdown depending on your fetch options.

Request

Send a LinkedIn profile URL to the universal fetch endpoint:
curl -X POST https://web-acq.wraithbytes.com/api/v1/internet/fetch/ \
  -H "Authorization: Bearer $WRAITHBYTES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://www.linkedin.com/in/username"}'
url
string
required
The LinkedIn profile URL. Supports both full URLs and relative paths.Pattern: /in/username or https://www.linkedin.com/in/username

Data Extracted

The LinkedIn Profile parser extracts comprehensive professional data including:
  • Personal Details: Name, location, about summary, avatar, and banner images
  • Engagement Metrics: Follower count and number of connections
  • Experience: Detailed chronological work history including companies, roles, dates, and descriptions
  • Education: Academic background including degrees, fields of study, and dates
  • Skills: List of professional skills
  • Content: Recent posts, articles, and activity
  • Accomplishments: Courses, projects, patents, and volunteer work
  • Recommendations: Professional endorsements received from others
  • Similar Profiles: “People also viewed” suggestions

Response Fields

name
string
Full name of the profile owner
location
string
Geographic location
about
string
Profile about/summary section
avatar
string
URL to the profile avatar image
banner_image
string
URL to the profile banner image
default_avatar
boolean
True if the profile has a default LinkedIn avatar
memorialized_account
boolean
True if the account is memorialized
followers
integer
Number of followers
connections
integer
Number of connections
recommendations_count
integer
Total number of recommendations received
posts
array
Recent posts by the user
experience
array
Array of work experience entries
education
array
Array of education entries
courses
array
List of courses
recommendations
array
Recommendations received
volunteer_experience
array
Volunteer experience
patents
array
Patents
activity
array
Recent activity
similar_profiles
array
Similar profiles (“People also viewed”)
Bio links
skills
array
Array of skills (strings)
Recommended courses

Response Example

{
  "success": true,
  "status": "success",
  "data": {
    "name": "Ethan Evans",
    "location": "Greater Seattle Area",
    "about": "Former Amazon VP, sharing High Performance and Career Growth insights.",
    "avatar": "https://media.licdn.com/dms/image/...",
    "banner_image": "https://media.licdn.com/dms/image/...",
    "default_avatar": false,
    "memorialized_account": false,
    "followers": 164000,
    "connections": 500,
    "recommendations_count": 17,
    "posts": [
      {
        "id": "6611712534565257216",
        "date_posted": "Dec 14, 2019",
        "title": "Cancel Culture in the Future",
        "intro": "Did you know, or have you thought about the fact that...",
        "reactions_count": 39,
        "comments_count": 3
      }
    ],
    "experience": [
      {
        "company": "Amazon",
        "company_url": "https://www.linkedin.com/company/amazon",
        "duration": "15 years 6 months",
        "start_date": "May 2019",
        "end_date": "Mar 2007",
        "positions": [
          {
            "title": "Vice President, Prime Gaming",
            "location": "Greater Seattle Area",
            "start_date": "May 2019",
            "end_date": "Sep 2020",
            "duration_short": "1 year 5 months",
            "description": "I and two peers conceived of Prime Gaming..."
          }
        ]
      }
    ],
    "education": [
      {
        "institution": "University of Washington",
        "degree": "Bachelor of Science",
        "field": "Computer Science",
        "start_year": "1990",
        "end_year": "1994"
      }
    ],
    "skills": ["Leadership", "Strategy", "Product Management"]
  }
}