# Linkedin Profile Scraper (`dead00/linkedin-profile-scrape`) Actor

A LinkedIn profile data scraper that scrapes complete professional profiles including work history, education, skills etc

- **URL**: https://apify.com/dead00/linkedin-profile-scrape.md
- **Developed by:** [Dead](https://apify.com/dead00) (community)
- **Categories:** Developer tools, Automation, Lead generation
- **Stats:** 25 total users, 3 monthly users, 0.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

$23.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## LinkedIn Profile Scraper

A robust LinkedIn profile scraper built as an Apify Actor that extracts comprehensive profile information including personal details, work experience, education, skills, and contact information.

### 🚀 Features

- **Complete Profile Data**: Extracts name, headline, summary, location, and profile picture
- **Work Experience**: Detailed job history with titles, companies, descriptions, and dates  
- **Education Background**: Academic history including schools, degrees, and fields of study
- **Skills & Endorsements**: Professional skills with endorsement counts
- **Contact Information**: Email, phone, and other contact details (when available)
- **Robust Error Handling**: Graceful handling of missing data and API limitations
- **Clean Data Structure**: Well-formatted JSON output with consistent field names

### 📋 Requirements

- Valid LinkedIn account cookies (specifically `li_at` cookie)
- LinkedIn profile URLs to scrape
- Apify platform account (for deployment)


#### Apify Deployment

1. Upload the code to your Apify Actor
2. Configure the Actor with appropriate memory and timeout settings
3. Test with sample input data

### 📝 Input Configuration

The Actor expects the following input parameters:

```json
{
  "url": "https://www.linkedin.com/in/profile-username",
  "cookies": [
    {
      "name": "li_at",
      "value": "your-li-at-cookie-value",
      "domain": ".linkedin.com",
      "path": "/"
    },
    {
      "name": "JSESSIONID", 
      "value": "your-jsessionid-value",
      "domain": ".linkedin.com",
      "path": "/"
    }
  ],
  "timestamp": "2024-01-15T10:30:00Z"
}
````

#### Required Parameters

- **url** (string): The LinkedIn profile URL to scrape
- **cookies** (array): Array of cookie objects containing authentication data

#### Optional Parameters

- **timestamp** (string): ISO timestamp for when the scraping was initiated

### 🍪 Getting LinkedIn Cookies

⚠️ **Important**: Use only your own LinkedIn account cookies. Scraping other profiles without permission may violate LinkedIn's Terms of Service.

#### Method 1: Browser Developer Tools

1. Log into LinkedIn in your browser
2. Open Developer Tools (F12)
3. Go to Application/Storage tab
4. Navigate to Cookies → https://www.linkedin.com
5. Copy the `li_at` and `JSESSIONID` cookie values

#### Method 2: Browser Extensions

Use cookie export extensions to extract cookies in JSON format.

### 📊 Output Format

The scraper returns structured JSON data:

```json
{
  "firstName": "John",
  "lastName": "Doe", 
  "headline": "Software Engineer at Tech Company",
  "summary": "Experienced software engineer with expertise in...",
  "locationName": "San Francisco, CA",
  "profilePicture": "https://media.licdn.com/...",
  "experiences": [
    {
      "title": "Senior Software Engineer",
      "company": "Tech Company Inc.",
      "location": "San Francisco, CA",
      "description": "Led development of...",
      "start_date": "2022-01",
      "end_date": "2024-01",
      "duration": "2 years"
    }
  ],
  "education": [
    {
      "school": "University Name",
      "degree": "Bachelor of Science",
      "field_of_study": "Computer Science", 
      "start_date": "2018",
      "end_date": "2022",
      "description": "Relevant coursework..."
    }
  ],
  "skills": [
    {
      "name": "Python",
      "endorsements": 25
    }
  ],
  "contact_info": {
    "email": "john.doe@email.com",
    "phone": "+1234567890"
  },
  "scraped_at": "2024-01-15T10:30:00Z"
}
```

### 🔧 Configuration

#### Logging

The scraper includes custom logging configuration:

- **INFO**: General operation information
- **WARNING**: Non-critical issues
- **ERROR**: Critical errors that prevent operation

Apify-specific warnings are filtered out for cleaner logs.

#### Error Handling

- Invalid URLs are handled gracefully
- Missing profile sections don't crash the scraper
- Network errors are logged and reported
- Authentication failures are clearly identified

### 🚨 Usage Guidelines

#### Legal Considerations

- Only scrape profiles you have permission to access
- Respect LinkedIn's Terms of Service and robots.txt
- Use scraped data responsibly and in compliance with privacy laws
- Consider rate limiting to avoid being blocked

#### Best Practices

- Use your own LinkedIn account cookies only
- Don't scrape profiles too frequently
- Store cookies securely and rotate them regularly
- Handle sensitive data (emails, phone numbers) appropriately
- Implement proper data retention policies

### 🐛 Troubleshooting

#### Common Issues

**"li\_at cookie not found"**

- Ensure you've included the li\_at cookie in your cookies array
- Verify the cookie value is correct and not expired

**"Failed to initialize LinkedIn client"**

- Check that all required cookies are provided
- Ensure cookies are in the correct format
- Verify your LinkedIn session is still active

**"Invalid profile URL format"**

- Use the full LinkedIn profile URL
- Supported formats: `/in/username`, `/pub/username`
- Remove any query parameters or tracking codes

**Rate Limiting**

- If you encounter rate limits, reduce scraping frequency
- Use delays between requests
- Consider using different LinkedIn accounts for larger operations

#### Debug Mode

Enable debug logging by modifying the logging level:

```python
logging.basicConfig(level=logging.DEBUG)
```

### 📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

### ⚠️ Disclaimer

This tool is for educational and research purposes. Users are responsible for complying with LinkedIn's Terms of Service and applicable laws. The authors are not responsible for any misuse of this software.

# Actor input Schema

## `url` (type: `array`):

The LinkedIn profile URL to scrape (e.g., https://www.linkedin.com/in/username/)

## `cookies` (type: `array`):

LinkedIn session cookies exported from EditThisCookie extension. Must include li\_at cookie for authentication.

## Actor input object example

```json
{
  "url": [
    "https://www.linkedin.com/in/williamhgates/"
  ],
  "cookies": [
    {
      "domain": ".linkedin.com",
      "expirationDate": 1766819833,
      "hostOnly": false,
      "httpOnly": false,
      "name": "mbox",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "PC#1b149f1d34e147ca8aad04354c34ff2b.41_0#1766819833|session#9ded07cffee54bbeac1a04f0abd61199#1751269699"
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1763015756.20781,
      "hostOnly": false,
      "httpOnly": false,
      "name": "lms_ads",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "AQFkrctBOAKhAgAAAZnhbsD96ynorq3FCQWAYHZw-jyNZxYJ7DB5Cgmhe1KKwZzKsHFXKg0tYXnfma2v_WuSgym_DOcN1pXr"
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1762774903.291892,
      "hostOnly": false,
      "httpOnly": false,
      "name": "_guid",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "98670ad5-4e60-40cf-92a9-420ebcbd64ba"
    },
    {
      "domain": "www.linkedin.com",
      "expirationDate": 1762658309,
      "hostOnly": true,
      "httpOnly": false,
      "name": "li_theme_set",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "app"
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1791959756.995735,
      "hostOnly": false,
      "httpOnly": false,
      "name": "bcookie",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "\"v=2&8ccd7972-e55f-41ca-85bd-69e4ee29d9e2\""
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1763015756.207925,
      "hostOnly": false,
      "httpOnly": false,
      "name": "lms_analytics",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "AQFkrctBOAKhAgAAAZnhbsD96ynorq3FCQWAYHZw-jyNZxYJ7DB5Cgmhe1KKwZzKsHFXKg0tYXnfma2v_WuSgym_DOcN1pXr"
    },
    {
      "domain": ".www.linkedin.com",
      "expirationDate": 1791959752.033427,
      "hostOnly": false,
      "httpOnly": true,
      "name": "li_at",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "AQEDAVnjCVcFGR1wAAABmMH_e9oAAAGaBXs0olYAUjNsPNsmqMYdDzJjVB9GU9duO-1DzIHrLxKxeTjBp2blnXZD5IpXfAMKRZnqzlua4gwPR5e57FjK6kE1MC7toHy7RnGBLiiEjrQJVxPL0WSog35Z"
    },
    {
      "domain": ".linkedin.com",
      "hostOnly": false,
      "httpOnly": false,
      "name": "lang",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": true,
      "storeId": null,
      "value": "v=2&lang=en-us"
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1760510151.760026,
      "hostOnly": false,
      "httpOnly": false,
      "name": "lidc",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "\"b=VB87:s=V:r=V:a=V:p=V:g=3914:u=27:x=1:i=1760423758:t=1760510151:v=2:sig=AQGyl8kc_89KEDM-12yQMsjvxCNbFrMI\""
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1763015755.749367,
      "hostOnly": false,
      "httpOnly": false,
      "name": "AnalyticsSyncHistory",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "AQIcrc55pmNDdgAAAZnhbr8x2YVfRO3fixCUjjiQD23YnBFHcV5muj7ISH8HeTkwvJcL-mOb_4J3eMYjJ3Ce0Q"
    },
    {
      "domain": ".www.linkedin.com",
      "expirationDate": 1791959757.208025,
      "hostOnly": false,
      "httpOnly": true,
      "name": "bscookie",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "\"v=1&20241024151211ca90673a-314c-4a2c-8684-7c0e3dc053c0AQE5RTi8NICkXqKCWCvmE5p_Ln0fSkoW\""
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1776531509.969087,
      "hostOnly": false,
      "httpOnly": true,
      "name": "dfpfpt",
      "path": "/",
      "sameSite": null,
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "7d4553839c7b49269a013bfbbe7ceb91"
    },
    {
      "domain": ".www.linkedin.com",
      "expirationDate": 1791959752.033568,
      "hostOnly": false,
      "httpOnly": false,
      "name": "JSESSIONID",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "\"ajax:6311728237736185978\""
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1768199756.995615,
      "hostOnly": false,
      "httpOnly": false,
      "name": "li_sugr",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "30d0cbda-b576-407e-adc7-18b3645018a7"
    },
    {
      "domain": ".www.linkedin.com",
      "expirationDate": 1775975759,
      "hostOnly": false,
      "httpOnly": false,
      "name": "li_theme",
      "path": "/",
      "sameSite": null,
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "light"
    },
    {
      "domain": ".www.linkedin.com",
      "expirationDate": 1775975759,
      "hostOnly": false,
      "httpOnly": false,
      "name": "li_theme_set",
      "path": "/",
      "sameSite": null,
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "app"
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1791959752.033509,
      "hostOnly": false,
      "httpOnly": false,
      "name": "liap",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "true"
    },
    {
      "domain": ".linkedin.com",
      "expirationDate": 1763015759,
      "hostOnly": false,
      "httpOnly": false,
      "name": "UserMatchHistory",
      "path": "/",
      "sameSite": "no_restriction",
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "AQJyKNodXFzVOgAAAZnhbs7Fl85ENXztPs6BV_6wHBKZoiq16_x5y5OyBMquDNyhCtigVA5AGhI2bcKudSFdxvX20RaxX-dekUtlwV860i18407s8GdTjbn0fa3IOCtIBxnjua4JLqwLbCp9U9nuyxWY4FMutM4-PLYAPgi_iz5CGXEuIg2BpRb_zD8O2sgELbrPAKNqcilIAR7Ac-fWm1xl1fon9aHy4j7lqT1nLPssQ_Ioml1ZCxtEiH0ZREU92vvhlssTxFKugMEPTG_qXnh3IIo3DRyyAFYDdbBSxkUyn6722hORpvzZlV-aDSJJefKpf66Xfq39tBzDBFnflHSd4fYdzxemjeCT7s8xdK-rWfdj2A"
    },
    {
      "domain": ".www.linkedin.com",
      "expirationDate": 1761633359,
      "hostOnly": false,
      "httpOnly": false,
      "name": "timezone",
      "path": "/",
      "sameSite": null,
      "secure": true,
      "session": false,
      "storeId": null,
      "value": "Asia/Calcutta"
    }
  ]
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("dead00/linkedin-profile-scrape").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("dead00/linkedin-profile-scrape").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call dead00/linkedin-profile-scrape --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=dead00/linkedin-profile-scrape",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Linkedin Profile Scraper",
        "description": "A LinkedIn profile data scraper that scrapes complete professional profiles including work history, education, skills etc",
        "version": "0.0",
        "x-build-id": "YPBqjyY6iBWzGTa8J"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/dead00~linkedin-profile-scrape/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-dead00-linkedin-profile-scrape",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/dead00~linkedin-profile-scrape/runs": {
            "post": {
                "operationId": "runs-sync-dead00-linkedin-profile-scrape",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/dead00~linkedin-profile-scrape/run-sync": {
            "post": {
                "operationId": "run-sync-dead00-linkedin-profile-scrape",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "url",
                    "cookies"
                ],
                "properties": {
                    "url": {
                        "title": "LinkedIn Profile URL (Required)",
                        "type": "array",
                        "description": "The LinkedIn profile URL to scrape (e.g., https://www.linkedin.com/in/username/)",
                        "default": [
                            "https://www.linkedin.com/in/williamhgates/"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "cookies": {
                        "title": "LinkedIn Cookies (Required)",
                        "type": "array",
                        "description": "LinkedIn session cookies exported from EditThisCookie extension. Must include li_at cookie for authentication.",
                        "default": [
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1766819833,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "mbox",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "PC#1b149f1d34e147ca8aad04354c34ff2b.41_0#1766819833|session#9ded07cffee54bbeac1a04f0abd61199#1751269699"
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1763015756.20781,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "lms_ads",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "AQFkrctBOAKhAgAAAZnhbsD96ynorq3FCQWAYHZw-jyNZxYJ7DB5Cgmhe1KKwZzKsHFXKg0tYXnfma2v_WuSgym_DOcN1pXr"
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1762774903.291892,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "_guid",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "98670ad5-4e60-40cf-92a9-420ebcbd64ba"
                            },
                            {
                                "domain": "www.linkedin.com",
                                "expirationDate": 1762658309,
                                "hostOnly": true,
                                "httpOnly": false,
                                "name": "li_theme_set",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "app"
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1791959756.995735,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "bcookie",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "\"v=2&8ccd7972-e55f-41ca-85bd-69e4ee29d9e2\""
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1763015756.207925,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "lms_analytics",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "AQFkrctBOAKhAgAAAZnhbsD96ynorq3FCQWAYHZw-jyNZxYJ7DB5Cgmhe1KKwZzKsHFXKg0tYXnfma2v_WuSgym_DOcN1pXr"
                            },
                            {
                                "domain": ".www.linkedin.com",
                                "expirationDate": 1791959752.033427,
                                "hostOnly": false,
                                "httpOnly": true,
                                "name": "li_at",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "AQEDAVnjCVcFGR1wAAABmMH_e9oAAAGaBXs0olYAUjNsPNsmqMYdDzJjVB9GU9duO-1DzIHrLxKxeTjBp2blnXZD5IpXfAMKRZnqzlua4gwPR5e57FjK6kE1MC7toHy7RnGBLiiEjrQJVxPL0WSog35Z"
                            },
                            {
                                "domain": ".linkedin.com",
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "lang",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": true,
                                "storeId": null,
                                "value": "v=2&lang=en-us"
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1760510151.760026,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "lidc",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "\"b=VB87:s=V:r=V:a=V:p=V:g=3914:u=27:x=1:i=1760423758:t=1760510151:v=2:sig=AQGyl8kc_89KEDM-12yQMsjvxCNbFrMI\""
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1763015755.749367,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "AnalyticsSyncHistory",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "AQIcrc55pmNDdgAAAZnhbr8x2YVfRO3fixCUjjiQD23YnBFHcV5muj7ISH8HeTkwvJcL-mOb_4J3eMYjJ3Ce0Q"
                            },
                            {
                                "domain": ".www.linkedin.com",
                                "expirationDate": 1791959757.208025,
                                "hostOnly": false,
                                "httpOnly": true,
                                "name": "bscookie",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "\"v=1&20241024151211ca90673a-314c-4a2c-8684-7c0e3dc053c0AQE5RTi8NICkXqKCWCvmE5p_Ln0fSkoW\""
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1776531509.969087,
                                "hostOnly": false,
                                "httpOnly": true,
                                "name": "dfpfpt",
                                "path": "/",
                                "sameSite": null,
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "7d4553839c7b49269a013bfbbe7ceb91"
                            },
                            {
                                "domain": ".www.linkedin.com",
                                "expirationDate": 1791959752.033568,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "JSESSIONID",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "\"ajax:6311728237736185978\""
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1768199756.995615,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "li_sugr",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "30d0cbda-b576-407e-adc7-18b3645018a7"
                            },
                            {
                                "domain": ".www.linkedin.com",
                                "expirationDate": 1775975759,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "li_theme",
                                "path": "/",
                                "sameSite": null,
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "light"
                            },
                            {
                                "domain": ".www.linkedin.com",
                                "expirationDate": 1775975759,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "li_theme_set",
                                "path": "/",
                                "sameSite": null,
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "app"
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1791959752.033509,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "liap",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "true"
                            },
                            {
                                "domain": ".linkedin.com",
                                "expirationDate": 1763015759,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "UserMatchHistory",
                                "path": "/",
                                "sameSite": "no_restriction",
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "AQJyKNodXFzVOgAAAZnhbs7Fl85ENXztPs6BV_6wHBKZoiq16_x5y5OyBMquDNyhCtigVA5AGhI2bcKudSFdxvX20RaxX-dekUtlwV860i18407s8GdTjbn0fa3IOCtIBxnjua4JLqwLbCp9U9nuyxWY4FMutM4-PLYAPgi_iz5CGXEuIg2BpRb_zD8O2sgELbrPAKNqcilIAR7Ac-fWm1xl1fon9aHy4j7lqT1nLPssQ_Ioml1ZCxtEiH0ZREU92vvhlssTxFKugMEPTG_qXnh3IIo3DRyyAFYDdbBSxkUyn6722hORpvzZlV-aDSJJefKpf66Xfq39tBzDBFnflHSd4fYdzxemjeCT7s8xdK-rWfdj2A"
                            },
                            {
                                "domain": ".www.linkedin.com",
                                "expirationDate": 1761633359,
                                "hostOnly": false,
                                "httpOnly": false,
                                "name": "timezone",
                                "path": "/",
                                "sameSite": null,
                                "secure": true,
                                "session": false,
                                "storeId": null,
                                "value": "Asia/Calcutta"
                            }
                        ]
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
