Skip to content

Companies API: Search

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/companies/search
HandlerOperatelyWeb.Api.Companies.Search

Authentication#

  • Requires a valid API token.
  • Read-only and full-access tokens can execute this query.

Inputs#

FieldTypeRequiredNullableDefault
querystringYesNo-

Outputs#

FieldTypeRequiredNullable
resultsarray of search_result objectYesNo

cURL Example#

Copied
curl --request GET \
  --url "https://app.operately.com/api/external/v1/companies/search?query=value" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}"

Response Example#

{
  "results": [
    {
      "__typename": "value",
      "context": "value",
      "id": "value",
      "matched_field": "title",
      "navigation_target": "<search_navigation_target>",
      "snippet": "value",
      "state": "closed",
      "title": "value",
      "type": "resource_hub_folder"
    }
  ]
}