Typsense multi searching

GET /api/v1/search
application/json

Body Required

  • q string Required

    Query string.

  • per_page integer

    Number of results to return. Maximum of 500.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
GET /api/v1/search
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/search' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"q":"Plannr","per_page":50}'
Request examples
{
  "q": "Plannr",
  "per_page": 50
}
Response examples (401)
{
  "message": "Unauthenticated."
}