Chilkat Online Tools

VB6 / MeiliSearch v0.24 / Search in index

Back to Collection Items

' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim http As New ChilkatHttp
Dim success As Long

Dim queryParams As New ChilkatJsonObject
success = queryParams.UpdateString("q","prinec")

http.SetRequestHeader "X-Meili-Api-Key","masterKey"

Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequestParams("GET","http://localhost:7700/indexes/indexUID/search",queryParams)
If (http.LastMethodSuccess = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Debug.Print resp.StatusCode
Debug.Print resp.BodyStr

Curl Command

curl -G -d "q=prinec"
	-H "X-Meili-Api-Key: masterKey"
http://localhost:7700/indexes/indexUID/search

Postman Collection Item JSON

{
  "name": "Search in index",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{url}}/indexes/{{indexUID}}/search?q=prinec",
      "host": [
        "{{url}}"
      ],
      "path": [
        "indexes",
        "{{indexUID}}",
        "search"
      ],
      "query": [
        {
          "key": "q",
          "value": "prinec"
        },
        {
          "key": "offset",
          "value": "0",
          "disabled": true
        },
        {
          "key": "limit",
          "value": "1",
          "disabled": true
        },
        {
          "key": "attributesToRetrieve",
          "value": "title,author",
          "disabled": true
        },
        {
          "key": "attributesToCrop",
          "value": "title",
          "disabled": true
        },
        {
          "key": "attributesToHighlight",
          "value": "*",
          "disabled": true
        },
        {
          "key": "cropLength",
          "value": "5",
          "disabled": true
        },
        {
          "key": "filter",
          "value": "genre=\"fantasy\"",
          "disabled": true
        },
        {
          "key": "matches",
          "value": "true",
          "disabled": true
        },
        {
          "key": "facetsDistribution",
          "value": "genre",
          "disabled": true
        },
        {
          "key": "sort",
          "value": "price",
          "disabled": true
        }
      ]
    }
  },
  "response": [
  ]
}