scrape_linkedin
Extract LinkedIn profile details, posts, and comments programmatically by providing a profile URL. Integrates with RapidAPI, costing 2 credits per request, for efficient data retrieval and analysis.
Instructions
Retrieves detailed profile data and posts with comments from a LinkedIn profile URL using RapidAPI. Each request costs 2 credits.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
linkedin_url | Yes | The LinkedIn profile URL to scrape. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"linkedin_url": {
"description": "The LinkedIn profile URL to scrape.",
"type": "string"
}
},
"required": [
"linkedin_url"
],
"type": "object"
}