GET
/
query-pipelines
/
{id}
/
collections
/
{collection}
/
{handler}
Get query results
curl --request GET \
  --url https://{FUSION HOST}/api/query-pipelines/{id}/collections/{collection}/{handler} \
  --header 'Authorization: Basic <encoded-value>'
{
  "spellcheck": {
    "suggestions": {},
    "correctlySpelled": true,
    "collations": [
      {
        "collationQuery": "<string>",
        "hits": 123,
        "misspellingsAndCorrections": {}
      }
    ]
  },
  "response": {
    "numFound": 123,
    "start": 123,
    "numFoundExact": true,
    "docs": [
      {}
    ]
  },
  "responseHeader": {
    "zkConnected": true,
    "QTime": 123,
    "totalTime": 123,
    "params": {},
    "status": 123
  },
  "facet_counts": {
    "facet_fields": {},
    "facet_queries": {},
    "facet_ranges": {},
    "facet_intervals": {},
    "facet_heatmaps": {}
  },
  "facets": {},
  "stats": {
    "stats_fields": {}
  },
  "grouped": {},
  "debug": {},
  "highlighting": {},
  "fusionResponse": {}
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The query pipeline ID.

collection
string
required

The data collection to query.

handler
string
required

The Solr search handler to use for this query.

Query Parameters

q
string
required

The query terms, using the Solr query language.

params
object

Additional Solr query parameters.

Response

OK

The search response.

spellcheck
object

Spellcheck results.

response
object

The query result documents and statistics.

responseHeader
object
facet_counts
object

Counts of facets matching the query.

facets
object
stats
object
grouped
object
debug
object
highlighting
object

Highlight snippets per matching document, if requested.

fusionResponse
object