GET
/
v1
/
companies
/
search
curl --request GET \
  --url https://api.extruct.ai/v1/companies/search \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "domain": "<string>",
    "relevance": 123,
    "tables": [
      {
        "table_id": "<string>",
        "row_id": "<string>",
        "name": "<string>",
        "kind": "generic",
        "owner": {
          "id": "<string>",
          "email": "<string>"
        },
        "updated_at": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
]

The endpoint allows you to search for companies using Extruct AI’s semantic search capabilities. The search is performed across all tables in your workspace.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

query
string
required
offset
integer | null
limit
integer | null

Response

200
application/json
Successful Response
id
string
required
name
string
required
description
string
required
domain
string
required
relevance
number
required
tables
object[]
required