Search LinkedIn industries

Search LinkedIn industry codes by name or category. Returns matching industries with their numeric ID, label, and hierarchy path.

Use the returned id values as the author_industry filter when calling POST /data/linkedin/posts/search.

Read-only — this endpoint does not consume credits.


GET
/data/linkedin/industries

Authorization

bearerAuth
AuthorizationBearer <token>

Organization API key from Integrations → API keys.

In: header

Query Parameters

q?string

Search term to filter industries by name, hierarchy, or description.

Length1 <= length <= 100
page?integer

Page number (1-indexed). Defaults to 1.

Range1 <= value
Default1

Response Body

application/json

application/json

curl -X GET "https://example.com/data/linkedin/industries"
{  "requestId": "string",  "industries": [    {      "id": 0,      "label": "string",      "hierarchy": "string"    }  ],  "meta": {    "total": 0,    "page": 0,    "pageCount": 0,    "pageSize": 0  }}
{  "requestId": "01HXYZABCDEF",  "error": {    "code": "unauthorized",    "message": "Invalid or revoked API key."  }}