Endpoint Playground
Test Crawlora's Discover LinkedIn product categories 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/product/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | No | Narrow results to categories matching this term. Omit to return every known category. |
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "1017",
"urn": "urn:li:standardizedProductCategory:1017",
"name": "Customer Relationship Management (CRM) Software",
"universal_name": "customer-relationship-management-software",
"link": "https://www.linkedin.com/products/categories/customer-relationship-management-software"
},
{
"id": "1620",
"urn": "urn:li:standardizedProductCategory:1620",
"name": "Healthcare CRM Software",
"universal_name": "healthcare-crm-software",
"link": "https://www.linkedin.com/products/categories/healthcare-crm-software"
}
],
"total": 2
}
}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 the standardized product categories accepted by the products/search endpoint's category_id filter. With a keyword, returns matching categories from LinkedIn's own category search. Without one, returns every known category.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "1017",
"urn": "urn:li:standardizedProductCategory:1017",
"name": "Customer Relationship Management (CRM) Software",
"universal_name": "customer-relationship-management-software",
"link": "https://www.linkedin.com/products/categories/customer-relationship-management-software"
},
{
"id": "1620",
"urn": "urn:li:standardizedProductCategory:1620",
"name": "Healthcare CRM Software",
"universal_name": "healthcare-crm-software",
"link": "https://www.linkedin.com/products/categories/healthcare-crm-software"
}
],
"total": 2
}
}curl "https://api.crawlora.net/api/v1/linkedin/product/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"