# LinkedIn Profiles API

Get complete LinkedIn profiles from profile URLs — headline, about, full work experience, education, skills, certifications, and more. No LinkedIn login required. To find people by keyword and filters first, use the LinkedIn Profiles Search agent, then feed its URLs here.

**Pricing:** $4 / 1k profiles

**Endpoint:** `POST /v1/data/linkedin/profiles/run`

**Auth:** `Authorization: Bearer mk_live_...`

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `queries` | array | No | LinkedIn profile URLs to fetch full details for. One per line. |

## Example

```bash
curl -X POST https://api.mindcase.co/v1/data/linkedin/profiles/run \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"params":{}}'
```

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/v1/data/linkedin/profiles/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {}},
)
data = resp.json()
```

## Get the results

`run` is async and returns a `job_id`. Poll until `status` is `completed`, then read the rows:

```bash
# 1) check status
curl https://api.mindcase.co/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/v1/jobs/JOB_ID/results \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"
```

Full API reference (auth, jobs, balance, endpoints): https://mindcase.co/skills.md

## Response columns

| Field | Display name | Type |
|-------|--------------|------|
| `profileUrl` | Profile URL | url |
| `handle` | Handle | text |
| `firstName` | First Name | text |
| `lastName` | Last Name | text |
| `headline` | Headline | text |
| `about` | About | text |
| `photo` | Photo | url |
| `coverPhoto` | Cover Photo | url |
| `city` | City | text |
| `state` | State | text |
| `country` | Country | text |
| `followers` | Followers | number |
| `connections` | Connections | number |
| `verified` | Verified | text |
| `premium` | Premium | text |
| `influencer` | Influencer | text |
| `openToWork` | Open To Work | text |
| `hiring` | Hiring | text |
| `creator` | Creator | text |
| `experience` | Experience | object_array |
| `education` | Education | object_array |
| `certifications` | Certifications | object_array |
| `projects` | Projects | object_array |
| `courses` | Courses | object_array |
| `publications` | Publications | object_array |
| `volunteering` | Volunteering | object_array |
| `receivedRecommendations` | Received Recommendations | object_array |
| `skills` | Skills | object_array |
| `patents` | Patents | object_array |
| `honorsAndAwards` | Honors And Awards | object_array |
| `languages` | Languages | object_array |
| `causes` | Causes | array |
