# LinkedIn Job

Scrape public LinkedIn job posting information including title, company, location, description, and application details.

- **Documentation:** [https://scrappa.co/docs/linkedin-api/linkedin_job](https://scrappa.co/docs/linkedin-api/linkedin_job)
- **API group:** LinkedIn API
- **Endpoint:** `GET https://scrappa.co/api/linkedin/job`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `url` | string | Yes | LinkedIn job URL |
| `use_cache` | boolean | No | Whether to use cached results (default: false) |
| `maximum_cache_age` | integer | No | Maximum age of cached results in seconds |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/linkedin/job?url=https%3A%2F%2Fwww.linkedin.com%2Fjobs%2Fview%2F4193260076"
```

## Example response

```json
{
    "success": true,
    "job_id": "4193260076",
    "title": "Teamleitung SAP Consulting Development (all genders)",
    "company_name": "adesso SE",
    "company_url": "https://www.linkedin.com/company/adesso-se",
    "location": "Dortmund, Germany",
    "description": "<p>We are looking for an experienced team lead to drive our SAP consulting practice...</p>",
    "employment_type": "FULL_TIME",
    "date_posted": "2024-11-22",
    "valid_through": "2025-01-31",
    "url": "https://www.linkedin.com/jobs/view/4193260076",
    "apply_url": null,
    "cached": false,
    "cached_at": null
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
