POST
/
external
/
semantic-search
cURL
curl --location 'https://app.sbai.cloud/api/external/semantic-search' \
--header 'client-id: your-client-id' \
--header 'private-key: your-private-key' \
--header 'secret: your-secret' \
--header 'Content-Type: application/json' \
--data '{
    "keyword": "about data gmail and outlook",
    "related_context_id": "",
    "web_search": false
}'
{
  "data": [
    {
      "id": "<string>",
      "relevance": 123,
      "source": "<string>",
      "fields": {
        "matchfeatures": {
          "firstPhase": 123,
          "combined_score": 123,
          "cos_sim": 123,
          "max_sim": 123,
          "max_sim_per_context": {}
        },
        "sddocname": "<string>",
        "documentid": "<string>",
        "id": "<string>",
        "title": "<string>",
        "download_link": "<string>",
        "page": 123,
        "type": "<string>",
        "user_id": "<string>",
        "text_contents": "<string>",
        "meta": {
          "is_private": true,
          "provider": "<string>"
        }
      }
    }
  ],
  "meta": [
    {
      "provider": "<string>",
      "id": "<string>",
      "count": 123
    }
  ]
}

Headers

client-id
string
required
private-key
string
required
secret
string
required

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.