collections
Retrieve a single collection
Retrieve the details of a collection, given its name.
get/collections/{collectionName}
Path parameters
collectionNamestring required
The name of the collection to retrieve
Response
Collection fetched
Example response
{
"name": "companies",
"fields": [
{
"name": "num_employees",
"type": "int32",
"facet": false
},
{
"name": "company_name",
"type": "string",
"facet": false
},
{
"name": "country",
"type": "string",
"facet": true
}
],
"default_sorting_field": "num_employees",
"synonym_sets": [
"synonym_set_1"
],
"enable_nested_fields": true,
"voice_query_model": {
"model_name": "ts/whisper/base.en"
}
}