---
title: "Search Companies"
method: GET
path: "/v1/company/"
tags: ["Companies"]
---

# Search Companies

`GET /v1/company/`

Search for companies that match the provided search terms.

Keywords are searched for in the _name_, _address_, _city_, _postal_, _province_ and _country_ fields.

## Query parameters

- `query` string, nullable
- `skip` integer, nullable
- `limit` integer, nullable
- `sort_direction` 'asc' | 'desc' — Direction to sort the `sort_column` - ascending or descending.
- `date_start` string, date-time, nullable
- `date_cut_off` string, date-time, nullable
- `sort_column` 'updated_at' | 'created_at' | 'id' — Which column to sort on

## Response `200`

Successful Response

- ApiGenericListResponseCompanyModel
  - `error` boolean — A boolean error indicator.
  - `message` string, nullable — Optional message.
  - `data` CompanyModel[], nullable — The response data for any given request.
    - `id` integer, required
    - `name` string, required
    - `address` string, nullable
    - `city` string, nullable
    - `province` string, nullable
    - `postalCode` string, nullable
    - `phone` string, nullable
    - `country` string, nullable
    - `timezone` string
    - `isActive` boolean
    - `status` string, nullable
    - `emailPrefix` string, nullable
    - `enabledSubcontractors` boolean
    - `enabledIncidents` boolean
    - `enabledAssets` boolean
    - `enabledAnalytics` boolean
    - `enabledCompliance` boolean
    - `enabledBeta` boolean
    - `industry` integer, nullable
    - `industryType` integer, nullable
    - `trade` integer, nullable
    - `updatedAt` string, date-time, nullable
    - `createdAt` string, date-time, nullable

## Other responses

- `400` — Business Logic Error
- `403` — Permission Error
- `404` — Records Not Found
- `409` — Integrity Error or Data Conflict
- `422` — Validation Error

---

[API](https://skmtc.dev/salussafety/apis/salus-developer-api.md) · [All operations](https://skmtc.dev/salussafety/apis/salus-developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/salussafety/salus-developer-api/revisions/ef065f44da25/schema)
