Skip to main content

Search API

POST /api/v1/search

Search through memos using semantic search. Authentication: Project API Key from https://platform.useskald.com Request (using Project API Key):
Request (using Token Authentication):
Parameters:
  • query (string, required): The search query.
  • project_id (UUID, optional): Only required when using Token Authentication.
  • limit (integer, optional): Max results to return (1-50, default 10).
  • filters (array of filter objects, optional): Array of filters to apply. See Filters for detailed documentation.
Response:
Notes:
  • distance is the vector similarity distance (lower is more similar).
  • Empty filters array is equivalent to no filters.
Error Responses: Missing query (400):
Invalid search method (400):
Limit too high (400):
Invalid filter (400):
See Filters for complete filter documentation and examples.