Endpoint Playground
Test Crawlora's LinkedIn Product Search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/linkedin/products/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | No | Search keyword, matched on word prefixes | |
| category_id | string | No | Numeric category id from /linkedin/product/categories | |
| start | integer | No | Upstream card offset, 0 to 1199 |
{
"code": 200,
"msg": "OK",
"data": {
"products": [
{
"id": "linkedin-sales-navigator",
"name": "LinkedIn Sales Navigator",
"link": "https://www.linkedin.com/products/linkedin-sales-navigator",
"category_name": "Sales Intelligence Software",
"category_link": "https://www.linkedin.com/products/categories/sales-intelligence-software",
"organization_name": "LinkedIn",
"description": "Sales Navigator helps sellers have high-quality conversations with the people that matter, at scale.",
"logo": "https://media.licdn.com/dms/image/v2/D4E33AQFKTZDLqpinzQ/productpage-logo-image_100_100/B4EZX4WGqkHUAY-/0/1743628299227/linkedin_sales_navigator_logo"
}
],
"start": 0,
"next_start": 10,
"total": 145986
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one page of LinkedIn's public product directory search results, optionally scoped to a keyword and/or category. Keyword matching is on word prefixes. start is an upstream card offset advanced by the previous response's next_start; LinkedIn's guest search stops returning results at offset 1200.
{
"code": 200,
"msg": "OK",
"data": {
"products": [
{
"id": "linkedin-sales-navigator",
"name": "LinkedIn Sales Navigator",
"link": "https://www.linkedin.com/products/linkedin-sales-navigator",
"category_name": "Sales Intelligence Software",
"category_link": "https://www.linkedin.com/products/categories/sales-intelligence-software",
"organization_name": "LinkedIn",
"description": "Sales Navigator helps sellers have high-quality conversations with the people that matter, at scale.",
"logo": "https://media.licdn.com/dms/image/v2/D4E33AQFKTZDLqpinzQ/productpage-logo-image_100_100/B4EZX4WGqkHUAY-/0/1743628299227/linkedin_sales_navigator_logo"
}
],
"start": 0,
"next_start": 10,
"total": 145986
}
}curl "https://api.crawlora.net/api/v1/linkedin/products/search" \
-H "x-api-key: $CRAWLORA_API_KEY"