Skip to main content
POST
/
api
/
ai
/
search
Performs a semantic vector search across indexed content using the provided phrase.
curl --request POST \
  --url https://{install}/api/ai/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phrase": "<string>",
  "vector": [
    123
  ]
}
'

Documentation Index

Fetch the complete documentation index at: https://ekso.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Bearer token. Obtain via the OAuth 2.0 token endpoint.

Body

Cancellation token.

phrase
string
vector
number<float>[]

Response

List of matching search results.