# List LinkedIn search parameters

### List LinkedIn search parameters

`GET /api/v1/linkedin/search/parameters`

Operation ID: `listLinkedinSearchParameters`

Resolves filter ids (location, industry, job title, company, …) from keywords. Pass the returned id to search filters that take an id instead of text.

**Query parameters**

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `type` ("LOCATION" | "PEOPLE" | "CONNECTIONS" | "COMPANY" | "SCHOOL" | "INDUSTRY" | "SERVICE" | "JOB_FUNCTION" | "JOB_TITLE" | "EMPLOYMENT_TYPE" | "SKILL", required): Kind of filter value to resolve. The returned ids feed the matching job search filters.
- `keywords` (string, optional): Text to match, of the same kind as type: a place for LOCATION, an industry for INDUSTRY, a role for JOB_TITLE. Unrelated keywords return no results.
- `service` ("classic" | "recruiter" | "sales_navigator", optional): Which search to resolve against. Defaults to classic.
- `limit` (integer, optional)

**200**: Matching search parameters and an optional cursor.

- `parameters` (object[], required)
- `cursor` (string | null, required)

**Errors**

- `400`: Bad request
- `401`: Unauthorized: missing or invalid API key
- `403`: Forbidden
- `404`: Not found
- `422`: Invalid request payload
