# Search LinkedIn companies

### Search LinkedIn companies

`POST /api/v1/linkedin/companies/search`

Operation ID: `searchLinkedinCompanies`

Company search by keywords or a company search URL, one or the other. Hits carry the numeric id, which the company endpoints accept as identifier.

**Request body** (required)

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `keywords` (string, optional)
- `searchUrl` (string · uri, optional): A search URL copied from LinkedIn, searching for the same kind of entity this endpoint returns. Filters carried in the URL take precedence.
- `cursor` (string, optional)
- `limit` (integer, optional): Page size, capped at 10 for a company keyword search. Use cursor for the next page.

**200**: Companies and an optional cursor.

- `companies` (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
