Skip to main content
POST
/
api
/
knowledge
/
search
/
suggest
Suggest
curl --request POST \
  --url https://{tenant}.app.big-panda.ai/api/knowledge/search/suggest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "limit": 8,
  "language": "<string>",
  "site_id": "<string>"
}
'
{
  "suggestions": [
    {
      "title": "<string>",
      "brand": "<string>",
      "category": "<string>"
    }
  ],
  "query": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.big-panda.ai/llms.txt

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

Authorizations

Authorization
string
header
required

API-Token aus dem Big-Panda-Admin-UI unter Einstellungen → API-Keys. Header: Authorization: Bearer <token>.

Body

application/json

Input for the autocomplete suggest endpoint.

query
string
required
Required string length: 1 - 200
limit
integer
default:8
Required range: 1 <= x <= 20
language
string | null
site_id
string | null

Response

Successful Response

Autocomplete suggestions.

suggestions
SuggestItem · object[]
required
query
string
required