GET
/
query
/
{id}
Get query results
curl --request GET \
  --url https://{FUSION HOST}/api/query/{id} \
  --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 profile ID.

Query Parameters

q
string
required

The query terms, using the Solr query language.

params
object

Additional Solr query parameters.

Response

200
application/*

OK

The search response.