# Enrich a VC Investor's LinkedIn Profile — Example

**Use case:** 

Ready-to-run example that pulls full LinkedIn profile data for a VC investor: name, position, firm, location, experience, and followers for $7 per 1,000 profile

## Input

```json
{
  "linkedinUrl": "https://www.linkedin.com/in/reidhoffman/"
}
```

## Output

```json
{
  "input_url": {
    "label": "Input LinkedIn URL",
    "format": "string"
  },
  "full_name": {
    "label": "Full name",
    "format": "string"
  },
  "first_name": {
    "label": "First name",
    "format": "string"
  },
  "last_name": {
    "label": "Last name",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "string"
  },
  "current_company_name": {
    "label": "Current company",
    "format": "string"
  },
  "current_company_title": {
    "label": "Title at company",
    "format": "string"
  },
  "city": {
    "label": "Location",
    "format": "string"
  },
  "country_code": {
    "label": "Country code",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "connections": {
    "label": "Connections",
    "format": "integer"
  },
  "about": {
    "label": "About",
    "format": "string"
  },
  "profile_url": {
    "label": "Matched profile URL",
    "format": "string"
  },
  "linkedin_id": {
    "label": "LinkedIn ID",
    "format": "string"
  },
  "avatar": {
    "label": "Avatar",
    "format": "string"
  },
  "experience": {
    "label": "Experience",
    "format": "array"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "success": {
    "label": "Success",
    "format": "boolean"
  },
  "message": {
    "label": "Status message",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Find LinkedIn Profile Data of Decision Makers](https://apify.com/parvenu/linkedin-profile-enrichment) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parvenu/linkedin-profile-enrichment) to learn more, explore other use cases, and run it yourself.