GET
/
search
curl --request GET \
  --url https://queryfd.onrender.com/search \
  --header 'X-API-Key: <x-api-key>'
{
  "points": [
    {
      "id": "<string>",
      "version": 123,
      "score": 123,
      "payload": {
        "info": {
          "title": "<string>",
          "description": "<string>"
        },
        "flow": {
          "id": "<string>",
          "title": "<string>",
          "description": "<string>"
        }
      },
      "vector": [
        123
      ],
      "shard_key": "<string>",
      "order_value": 123
    }
  ]
}

Headers

X-API-Key
string
required

The API key for authenticating the request.

Query Parameters

query
string
required

The search query string.

collection_name
string
required

The name of the collection to search within.

limit
integer
default:
1

The maximum number of results to return (default is 1).

mode
enum<string>
default:
quality

The search mode to use (default is 'quality').

Available options:
quality,
speed

Response

200
application/json
Successful Response
points
object[]