-
Notifications
You must be signed in to change notification settings - Fork 5
/
openapi.yaml
5207 lines (5045 loc) · 168 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
summary: >-
An open source, blazingly fast and hyper relevant search-engine that will
improve your search experience.
title: Meilisearch Core API
description: Search documents, configure and manage the Meilisearch engine.
version: 1.7.0
contact:
name: Meilisearch
email: bonjour@Meilisearch.com
license:
name: MIT
url: https://github.com/Meilisearch/Meilisearch/blob/main/LICENSE
x-api-status-urls:
- https://edge.meilisearch.com
x-konfig-ignore:
object-with-no-properties: true
servers:
- description: https://example.meilisearch.com:7700
url: '{protocol}://{domain}:{port}'
variables:
protocol:
enum:
- https
- http
default: https
type: string
domain:
default: example.meilisearch.com
port:
default: '7700'
tags:
- description: >
`Settings` is a list of all the __customization__ possible for an index.
It is possible to update all the settings in one go or individually with
the dedicated routes. Updates in the settings route are __partial__. This
means that any parameters not provided in the body will be left unchanged.
Updating the settings means overwriting the default settings of
Meilisearch. You can reset to default values using the `DELETE` routes.
name: Settings
- description: >
Documents are objects composed of fields that can store any type of data.
Each field contains an attribute and its associated value.
Documents are stored inside
[indexes](https://docs.meilisearch.com/learn/core_concepts/indexes.html).
[Learn more about
documents](https://docs.meilisearch.com/learn/core_concepts/documents.html).
name: Documents
- description: >
An index is an entity that gathers a set of
[documents](https://docs.meilisearch.com/learn/core_concepts/documents.html)
with its own settings.
[Learn more about
indexes](https://docs.meilisearch.com/learn/core_concepts/indexes.html).
name: Indexes
- description: >
Manage API `keys` for a Meilisearch instance. Each key has a given set of
permissions.
You must have the master key or the default admin key to access the `keys`
route.
[More information about the keys and their
rights](https://docs.meilisearch.com/reference/features/security.html).
name: Keys
- description: >
Meilisearch exposes 3 routes to perform document searches:
* A POST route: this is the preferred route when using API authentication,
as it allows [preflight
request](https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request)
caching and better performances.
* A GET route: the usage of this route is discouraged, unless you have
good reason to do otherwise (specific caching abilities for example).
Other than the differences mentioned above, the two routes are strictly
equivalent.
* A POST multi-search route allowing to perform multiple search queries in
a single HTTP request.
Meilisearch exposes 1 route to perform facet searches:
* A POST facet-search route allowing to perform a facet search query on a
facet in a single HTTP request.
name: Search
- description: >
The `tasks` route gives information about the progress of the
[asynchronous
operations](https://docs.meilisearch.com/learn/advanced/asynchronous_operations.html).
name: Tasks
- description: >
`Stats` gives extended information and metrics about indexes and the
Meilisearch database.
name: Stats
- description: >
The `experimental-features` endpoint allows enabling and disabling
[experimental
features](https://github.com/meilisearch/engine-team/blob/main/resources/experimental-features.md)
at runtime.
Experimental features are features that are not yet covered by
[Meilisearch's stability
guarantee](https://github.com/meilisearch/engine-team/blob/main/resources/versioning-policy.md)
and that could break between minor and patch Meilisearch versions.
name: Experimental
- description: >
The health check endpoint enables you to periodically test the health of
your Meilisearch instance.
name: Health
- description: |
Current version of Meilisearch.
name: Version
- description: >
The `dumps` route allows the creation of database dumps. Dumps are `.dump`
files that can be used to launch Meilisearch. Dumps are compatible between
Meilisearch versions.
Creating a dump is also referred to as exporting it, whereas launching
Meilisearch with a dump is referred to as importing it.
During a [dump
export](https://docs.meilisearch.com/reference/api/dump.html#create-a-dump),
all indexes of the current instance are exported—together with their
documents and settings—and saved as a single `.dump` file.
During a dump import, all indexes contained in the indicated `.dump` file
are imported along with their associated documents and settings. Any
existing index with the same uid as an index in the dump file will be
overwritten.
Dump imports are [performed at
launch](https://docs.meilisearch.com/reference/features/configuration.html#import-dump)
using an option.
name: Dumps
- description: >
The `snapshots` route allows the creation of database snapshots. Snapshots
are `.snapshot` files that can be used to launch Meilisearch.
Creating a snapshot is also referred to as exporting it, whereas launching
Meilisearch with a snapshot is referred to as importing it.
During a snapshot export, all indexes of the current instance are
exported—together with their documents and settings—and saved as a single
`.snapshot` file.
During a snapshot import, all indexes contained in the indicated
`.snapshot` file are imported along with their associated documents and
settings.
Snapshot imports are performed at launch using an option.
name: Snapshots
- name: Facet
paths:
/dumps:
post:
tags:
- Dumps
summary: Create a Dump
operationId: Dumps_triggerDumpCreation
security:
- apiKey: []
description: >
Triggers a dump creation process. Once the process is complete, a dump
is created in the [dump
directory](https://docs.meilisearch.com/reference/features/configuration.html#dump-directory).
If the dump directory does not exist yet, it will be created.
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_dumpCreation'
'401':
$ref: '#/components/responses/401'
/snapshots:
post:
tags:
- Snapshots
summary: Create a Snapshot
operationId: Snapshots_createSnapshotProcess
security:
- apiKey: []
description: >
Triggers a snapshot creation process. Once the process is complete, a
snapshot is created in the snapshot directory. If the snapshot directory
does not exist yet, it will be created.
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_snapshotCreation'
'401':
$ref: '#/components/responses/401'
/health:
get:
tags:
- Health
summary: Get health
operationId: Health_checkMeilisearchInstance
description: Get health of the Meilisearch instance.
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/HealthCheckMeilisearchInstanceResponse'
examples:
'200':
value:
status: available
x-internal: false
/indexes:
get:
tags:
- Indexes
summary: List Indexes
operationId: Indexes_list
security:
- apiKey: []
description: List all indexes.
parameters:
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/offset'
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/IndexesListResponse'
examples:
Example:
value:
results:
- uid: movies
primaryKey: movie_id
createdAt: '2019-11-20T09:40:33.711324Z'
updatedAt: '2019-11-20T09:40:33.711324Z'
limit: 1
offset: 0
total: 1
'401':
$ref: '#/components/responses/401'
post:
tags:
- Indexes
summary: Create Index
operationId: Indexes_createIndex
security:
- apiKey: []
description: Create an index.
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/IndexesCreateIndexRequest'
examples:
Example:
value:
uid: movies
primaryKey: movie_id
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_indexCreation'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/error'
examples:
Index already exists:
value:
message: Index `:indexUid` already exists.
code: index_already_exists
type: invalid_request
link: https://docs.meilisearch.com/errors#index_already_exists
Invalid Index Uid:
value:
message: >-
`:indexUid` is not a valid index uid. Index uid can be an
integer or a string containing only alphanumeric
characters, hyphens (-) and underscores (_).
code: invalid_index_uid
type: invalid_request
link: https://docs.meilisearch.com/errors#invalid_index_uid
'401':
$ref: '#/components/responses/401'
/indexes/{indexUid}:
parameters:
- $ref: '#/components/parameters/indexUid'
get:
tags:
- Indexes
summary: Get Index
operationId: Indexes_getIndex
security:
- apiKey: []
description: Get information about an index.
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/index'
examples:
Example:
value:
uid: movies
primaryKey: movie_id
createdAt: '2019-11-20T09:40:33.711324Z'
updatedAt: '2019-11-20T09:40:33.711324Z'
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
patch:
tags:
- Indexes
summary: Update Index
operationId: Indexes_updateIndexPrimaryKey
security:
- apiKey: []
description: Update an index. Specify a primaryKey if it doesn't already exists yet.
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/IndexesUpdateIndexPrimaryKeyRequest'
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_indexUpdate'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/error'
examples:
Primary Key Already Present:
value:
message: Index `:indexUid` already has a primary key.
code: index_primary_key_already_exists
type: invalid_request
link: >-
https://docs.meilisearch.com/errors#index_primary_key_already_exists
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
delete:
tags:
- Indexes
summary: Delete Index
operationId: Indexes_deleteIndex
security:
- apiKey: []
description: Delete an index.
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_indexDeletion'
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
/indexes/{indexUid}/documents:
parameters:
- $ref: '#/components/parameters/indexUid'
get:
tags:
- Documents
summary: Get Documents
operationId: Documents_getByBatch
security:
- apiKey: []
description: >
Get
[documents](https://docs.meilisearch.com/learn/core_concepts/documents.html)
by batch.
parameters:
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/fields'
- $ref: '#/components/parameters/filter'
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsGetByBatchResponse'
examples:
Example:
value:
results:
- title: American Ninja 5
id: 25684
poster: >-
https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg
overview: >-
When a scientists daughter is kidnapped, American
Ninja, attempts to find her, but this time he teams up
with a youngster he has trained in the ways of the
ninja.
release_date: 725846400
- title: The Bridge of San Luis Rey
id: 45881
poster: >-
https://image.tmdb.org/t/p/w500/4X7quIcdkc24Cveg5XdpfRqxtYA.jpg
overview: >-
The Bridge of San Luis Rey is American author Thornton
Wilder's second novel, first published in 1927 to
worldwide acclaim. It tells the story of several
interrelated people who die in the collapse of an Inca
rope-fiber suspension bridge in Peru, and the events
that lead up to their being on the bridge.[ A friar
who has witnessed the tragic accident then goes about
inquiring into the lives of the victims, seeking some
sort of cosmic answer to the question of why each had
to die. The novel won the Pulitzer Prize in 1928.
release_date: 1072915200
limit: 20
offset: 0
total: 2
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
post:
tags:
- Documents
summary: Add or replace documents
operationId: Documents_addOrUpdateBatch
security:
- apiKey: []
description: >
Add a list of
[documents](https://docs.meilisearch.com/learn/core_concepts/documents.html)
or replace them if they already exist.
If you send an already existing document (same
[id](https://docs.meilisearch.com/learn/core_concepts/documents.html#primary-key))
the whole existing document will be overwritten by the new document.
Fields previously in the document not present in the new document are
removed.
For a partial update of the document see Add or update documents route.
> info
> If the provided index does not exist, it will be created.
> info
> Use the reserved `_geo` object to add geo coordinates to a document.
`_geo` is an object made of `lat` and `lng` field.
>
> Use the reserved `_vectors` arrays of floats to add embeddings to a
document. `_vectors` is an array of floats or multiple arrays of floats
in an outer array.
parameters:
- $ref: '#/components/parameters/primaryKey'
- $ref: '#/components/parameters/csvDelimiter'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsAddOrUpdateBatchRequest'
examples: {}
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_documentAdditionOrUpdate'
'401':
$ref: '#/components/responses/401'
'413':
$ref: '#/components/responses/413'
put:
tags:
- Documents
summary: Add or update documents
operationId: Documents_addOrUpdateBatch
security:
- apiKey: []
description: >-
Add a list of documents or update them if they already exist.
If you send an already existing document (same
[id](https://docs.meilisearch.com/learn/core_concepts/documents.html#primary-key))
the old document will be only partially updated according to the fields
of the new document. Thus, any fields not present in the new document
are kept and remained unchanged.
To completely overwrite a document, see Add or replace documents route.
> info
> If the provided index does not exist, it will be created.
> info
> Use the reserved `_geo` object to add geo coordinates to a document.
`_geo` is an object made of `lat` and `lng` field.
>
> Use the reserved `_vectors` arrays of floats to add embeddings to a
document. `_vectors` is an array of floats or multiple arrays of floats
in an outer array.
parameters:
- $ref: '#/components/parameters/primaryKey'
- $ref: '#/components/parameters/csvDelimiter'
requestBody:
description: ''
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsAddOrUpdateBatchRequest1'
examples:
Example:
value:
- title: American Ninja 5
id: 25684
poster: >-
https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg
overview: >-
When a scientists daughter is kidnapped, American Ninja,
attempts to find her, but this time he teams up with a
youngster he has trained in the ways of the ninja.
release_date: 725846400
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_documentAdditionOrUpdate'
'401':
$ref: '#/components/responses/401'
'413':
$ref: '#/components/responses/413'
delete:
tags:
- Documents
summary: Delete all documents
operationId: Documents_deleteAll
security:
- apiKey: []
description: Delete all documents in the specified index.
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_documentDeletion'
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
/indexes/{indexUid}/documents/fetch:
post:
tags:
- Documents
summary: Get Documents
operationId: Documents_getByBatch
security:
- apiKey: []
description: >
Get
[documents](https://docs.meilisearch.com/learn/core_concepts/documents.html)
by batch.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsGetByBatchRequest'
examples:
Example:
value:
offset: 2
limit: 5
fields:
- name
- picture
filter: doggo = "bernese mountain"
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsGetByBatch200Response'
examples:
Example:
value:
results:
- title: American Ninja 5
id: 25684
poster: >-
https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg
overview: >-
When a scientists daughter is kidnapped, American
Ninja, attempts to find her, but this time he teams up
with a youngster he has trained in the ways of the
ninja.
release_date: 725846400
- title: The Bridge of San Luis Rey
id: 45881
poster: >-
https://image.tmdb.org/t/p/w500/4X7quIcdkc24Cveg5XdpfRqxtYA.jpg
overview: >-
The Bridge of San Luis Rey is American author Thornton
Wilder's second novel, first published in 1927 to
worldwide acclaim. It tells the story of several
interrelated people who die in the collapse of an Inca
rope-fiber suspension bridge in Peru, and the events
that lead up to their being on the bridge.[ A friar
who has witnessed the tragic accident then goes about
inquiring into the lives of the victims, seeking some
sort of cosmic answer to the question of why each had
to die. The novel won the Pulitzer Prize in 1928.
release_date: 1072915200
limit: 20
offset: 0
total: 2
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
/indexes/{indexUid}/documents/delete-batch:
parameters:
- $ref: '#/components/parameters/indexUid'
post:
tags:
- Documents
summary: Delete documents
operationId: Documents_deleteSelectionByFilter
security:
- apiKey: []
description: Delete a selection of documents based on array of document id's.
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsDeleteSelectionByFilterRequest'
examples:
Example:
value:
- 1
- 2
- 3
- a string id
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_documentDeletion'
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
/indexes/{indexUid}/documents/delete:
parameters:
- $ref: '#/components/parameters/indexUid'
post:
tags:
- Documents
summary: Delete documents
operationId: Documents_deleteSelectionBasedFilter
security:
- apiKey: []
description: Delete a selection of documents based on a filter.
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DocumentsDeleteSelectionBasedFilterRequest'
examples:
Example:
value:
offset: 2
limit: 5
fields:
- name
- picture
filter: doggo = "bernese mountain"
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_documentDeletion'
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
/indexes/{indexUid}/documents/{documentId}:
parameters:
- $ref: '#/components/parameters/indexUid'
- $ref: '#/components/parameters/documentId'
get:
tags:
- Documents
summary: Get one document
operationId: Documents_getById
security:
- apiKey: []
description: >-
Get one
[document](https://docs.meilisearch.com/learn/core_concepts/documents.html)
using its unique id.
parameters:
- $ref: '#/components/parameters/fields'
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/document'
examples: {}
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
delete:
tags:
- Documents
summary: Delete one document
operationId: Documents_deleteDocumentById
security:
- apiKey: []
description: Delete one document based on its unique id.
responses:
'202':
description: Accepted
content:
application/json:
schema:
$ref: '#/components/responses/202'
examples:
'202':
$ref: '#/components/examples/202_documentDeletion'
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
/indexes/{indexUid}/search:
parameters:
- $ref: '#/components/parameters/indexUid'
get:
tags:
- Search
summary: Search
operationId: Search_documents
security:
- apiKey: []
description: >
Search for documents matching a specific query in the given index.
This route should only be used when no API key is required. If an API
key is required, use the POST route instead.
parameters:
- $ref: '#/components/parameters/q'
- $ref: '#/components/parameters/attributesToRetrieve'
- $ref: '#/components/parameters/attributesToHighlight'
- $ref: '#/components/parameters/highlightPreTag'
- $ref: '#/components/parameters/highlightPostTag'
- $ref: '#/components/parameters/attributesToCrop'
- $ref: '#/components/parameters/cropMarker'
- $ref: '#/components/parameters/cropLength'
- $ref: '#/components/parameters/facets'
- $ref: '#/components/parameters/filter'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/sort'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/page'
- $ref: '#/components/parameters/hitsPerPage'
- $ref: '#/components/parameters/showMatchesPosition'
- $ref: '#/components/parameters/matchingStrategy'
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/searchResponse'
examples:
Example:
value:
hits:
- title: American Ninja 5
id: 25684
poster: >-
https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg
overview: >-
When a scientists daughter is kidnapped, American
Ninja, attempts to find her, but this time he teams up
with a youngster he has trained in the ways of the
ninja.
release_date: 725846400
_formatted:
title: American Ninja 5
id: 25684
poster: >-
https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg
overview: >-
When a scientists daughter is kidnapped, American
<em>Ninja</em>, attempts to find her, but this time
he teams up with a youngster he has trained in the
ways of the <em>ninja</em>.
release_date: 725846400
_matchesPosition:
overview:
- start: 49
length: 5
- start: 155
length: 5
facetDistribution:
genres:
action: 273
animation: 118
adventure: 132
fantasy: 67
comedy: 475
mystery: 70
thriller: 217
facetStats:
price:
min: 1
max: 4999.99
limit: 0
offset: 0
estimatedTotalHits: 0
query: string
processingTimeMs: 0
'401':
$ref: '#/components/responses/401'
'404':
description: Not Found
post:
tags:
- Search
summary: Search
operationId: Search_documentsSearch
security:
- apiKey: []
description: >
Search for documents matching a specific query in the given index.
This is the preferred route to perform search when an API key is
required, as it allows for [preflight
requests](https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request)
to be cached. Caching preflight requests improves considerably the speed
of the search.
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/searchQuery'
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/searchResponse'
examples:
Example:
value:
hits:
- title: American Ninja 5
id: 25684
poster: >-
https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg
overview: >-
When a scientists daughter is kidnapped, American
Ninja, attempts to find her, but this time he teams up
with a youngster he has trained in the ways of the
ninja.
release_date: 725846400
_formatted:
title: American Ninja 5
id: 25684
poster: >-
https://image.tmdb.org/t/p/w1280/iuAQVI4mvjI83wnirpD8GVNRVuY.jpg
overview: >-
When a scientists daughter is kidnapped, American
<em>Ninja</em>, attempts to find her, but this time
he teams up with a youngster he has trained in the
ways of the <em>ninja</em>.
release_date: 725846400
_matchesPosition:
overview:
- start: 49
length: 5
- start: 155
length: 5
facetDistribution:
genres:
action: 273
animation: 118
adventure: 132
fantasy: 67
comedy: 475
mystery: 70
thriller: 217
facetStats:
price:
min: 1
max: 4999.99
limit: 0