-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathopenapi.yaml
More file actions
5583 lines (5412 loc) · 165 KB
/
openapi.yaml
File metadata and controls
5583 lines (5412 loc) · 165 KB
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.1.0
info:
title: qui API
description: qui API for managing multiple qBittorrent instances
version: 1.0.0
license:
name: GPL-2.0-or-later
url: https://opensource.org/licenses/GPL-2.0
servers:
- url: http://localhost:7476
description: Local development server
- url: /
description: Current server
security:
- ApiKeyAuth: []
- SessionAuth: []
paths:
/api/auth/setup:
post:
tags:
- Authentication
summary: Initial setup
description: Create the initial admin user (only available before first user is created)
security: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- username
- password
properties:
username:
type: string
minLength: 1
password:
type: string
minLength: 8
writeOnly: true
description: Password will be hashed and never returned in responses
responses:
'201':
description: Setup completed successfully
content:
application/json:
schema:
type: object
properties:
message:
type: string
user:
$ref: '#/components/schemas/User'
'400':
description: Setup already completed
/api/auth/login:
post:
tags:
- Authentication
summary: Login
description: Authenticate with username and password
security: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- username
- password
properties:
username:
type: string
password:
type: string
writeOnly: true
description: Password will be hashed and never returned in responses
responses:
'200':
description: Login successful
content:
application/json:
schema:
type: object
properties:
message:
type: string
user:
$ref: '#/components/schemas/User'
'401':
description: Invalid credentials
/api/auth/check-setup:
get:
tags:
- Authentication
summary: Check setup status
description: Check if initial setup is required
security: []
responses:
'200':
description: Setup status
content:
application/json:
schema:
type: object
properties:
setupRequired:
type: boolean
/api/auth/logout:
post:
tags:
- Authentication
summary: Logout
description: End the current session
responses:
'200':
description: Logged out successfully
/api/auth/me:
get:
tags:
- Authentication
summary: Get current user
description: Get information about the authenticated user
responses:
'200':
description: Current user information
content:
application/json:
schema:
$ref: '#/components/schemas/User'
/api/auth/change-password:
put:
tags:
- Authentication
summary: Change password
description: Change the current user's password
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- currentPassword
- newPassword
properties:
currentPassword:
type: string
writeOnly: true
description: Current password for verification
newPassword:
type: string
minLength: 8
writeOnly: true
description: New password will be hashed and never returned in responses
responses:
'200':
description: Password changed successfully
'401':
description: Invalid current password
/api/api-keys:
get:
tags:
- API Keys
summary: List API keys
description: Get all API keys for the current user
responses:
'200':
description: List of API keys
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ApiKey'
post:
tags:
- API Keys
summary: Create API key
description: Generate a new API key
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
properties:
name:
type: string
description: Descriptive name for the API key
responses:
'201':
description: API key created
content:
application/json:
schema:
type: object
properties:
id:
type: integer
name:
type: string
key:
type: string
description: The API key (only shown once)
createdAt:
type: string
format: date-time
message:
type: string
/api/api-keys/{id}:
delete:
tags:
- API Keys
summary: Delete API key
description: Revoke an API key
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: API key deleted successfully
'404':
description: API key not found
/api/client-api-keys:
get:
tags:
- Client API Keys
summary: List client API keys
description: Get all client API keys for external applications
responses:
'200':
description: List of client API keys
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ClientApiKey'
post:
tags:
- Client API Keys
summary: Create client API key
description: Generate a new client API key for external applications
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- clientName
- instanceId
properties:
clientName:
type: string
description: Name of the client application (e.g., "Sonarr")
instanceId:
type: integer
description: ID of the qBittorrent instance to proxy to
responses:
'201':
description: Client API key created
content:
application/json:
schema:
type: object
properties:
id:
type: integer
clientName:
type: string
instanceId:
type: integer
key:
type: string
description: The client API key (only shown once)
createdAt:
type: string
format: date-time
message:
type: string
/api/client-api-keys/{id}:
delete:
tags:
- Client API Keys
summary: Delete client API key
description: Revoke a client API key
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: Client API key deleted successfully
'404':
description: Client API key not found
/api/external-programs:
get:
tags:
- External Programs
summary: List external programs
description: Get all configured external programs
responses:
'200':
description: List of external programs
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ExternalProgram'
post:
tags:
- External Programs
summary: Create external program
description: Add a new external program configuration
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- path
properties:
name:
type: string
description: Display name for the external program
path:
type: string
description: Path to the executable
args_template:
type: string
description: Arguments template with variable substitution ({hash}, {name}, {save_path}, {content_path}, {category}, {tags}, {state}, {size}, {progress})
enabled:
type: boolean
default: true
description: Whether this program is enabled
use_terminal:
type: boolean
default: true
description: Whether to launch in a terminal window
path_mappings:
type: array
items:
$ref: '#/components/schemas/PathMapping'
default: []
description: Path mappings to convert remote paths to local paths (useful for remote instances)
responses:
'201':
description: External program created
content:
application/json:
schema:
$ref: '#/components/schemas/ExternalProgram'
'409':
description: A program with this name already exists
/api/external-programs/{id}:
put:
tags:
- External Programs
summary: Update external program
description: Update an external program configuration
parameters:
- name: id
in: path
required: true
schema:
type: integer
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- path
properties:
name:
type: string
description: Display name for the external program
path:
type: string
description: Path to the executable
args_template:
type: string
description: Arguments template with variable substitution
enabled:
type: boolean
description: Whether this program is enabled
use_terminal:
type: boolean
description: Whether to launch in a terminal window
path_mappings:
type: array
items:
$ref: '#/components/schemas/PathMapping'
description: Path mappings to convert remote paths to local paths
responses:
'200':
description: External program updated
content:
application/json:
schema:
$ref: '#/components/schemas/ExternalProgram'
'404':
description: External program not found
'409':
description: A program with this name already exists
delete:
tags:
- External Programs
summary: Delete external program
description: Delete an external program configuration
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'204':
description: External program deleted successfully
'404':
description: External program not found
/api/external-programs/execute:
post:
tags:
- External Programs
summary: Execute external program
description: |
Execute an external program for one or more torrents.
The program is launched asynchronously, and this endpoint returns immediately after starting the process.
The 'success' field in the response indicates whether the program was successfully launched, not whether it completed successfully.
The program path and arguments are passed through variable substitution where placeholders
like {hash}, {name}, {save_path}, etc. are replaced with actual torrent metadata.
Security: On Windows, all arguments are escaped for cmd.exe using ^ before being passed
to CreateProcess to prevent command injection via malicious torrent names.
On Unix/Linux, arguments are wrapped in single quotes with proper escaping.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- program_id
- instance_id
- hashes
properties:
program_id:
type: integer
description: ID of the external program to execute
example: 1
instance_id:
type: integer
description: ID of the qBittorrent instance where the torrents are located
example: 1
hashes:
type: array
items:
type: string
description: Array of torrent hashes to execute the program for
example: ["abc123def456", "789ghi012jkl"]
responses:
'200':
description: Execution results
content:
application/json:
schema:
type: object
properties:
results:
type: array
items:
type: object
properties:
hash:
type: string
success:
type: boolean
message:
type: string
error:
type: string
'400':
description: Invalid request (missing program_id, instance_id, or hashes; or program is disabled)
'404':
description: Program not found
'500':
description: Internal server error (failed to get client for instance, failed to retrieve torrent info)
/proxy/{api-key}/api/v2/torrents/mediainfo:
get:
tags:
- Proxy
summary: Get MediaInfo via proxy API key
description: >
Returns MediaInfo summary text and JSON output for an instance-relative content path using
a client API key in the proxy path.
security: []
parameters:
- name: api-key
in: path
required: true
schema:
type: string
description: Client API key
- name: contentPath
in: query
required: false
schema:
type: string
description: "Canonical instance-relative content path (legacy alias: content_path)"
- name: content_path
in: query
required: false
schema:
type: string
description: Legacy alias for contentPath
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
contentPath:
type: string
description: Canonical instance-relative content path
content_path:
type: string
description: Legacy alias for contentPath
application/x-www-form-urlencoded:
schema:
type: object
properties:
contentPath:
type: string
description: Canonical instance-relative content path
content_path:
type: string
description: Legacy alias for contentPath
responses:
'200':
description: MediaInfo summary and JSON
content:
application/json:
schema:
type: object
properties:
contentPath:
type: string
summaryTxt:
type: string
mediaInfoJson:
type: object
additionalProperties: true
'400':
description: Invalid content path
'401':
description: Missing or invalid client API key
'403':
description: Instance does not have local filesystem access
'404':
description: Instance or file not found
'500':
description: Internal server error
/api/arr/instances:
get:
tags:
- ARR Integrations
summary: List ARR instances
description: Get all configured Sonarr/Radarr instances
responses:
'200':
description: List of ARR instances
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ArrInstance'
post:
tags:
- ARR Integrations
summary: Create ARR instance
description: Add a new Sonarr or Radarr instance configuration
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ArrInstanceCreate'
responses:
'201':
description: ARR instance created
content:
application/json:
schema:
$ref: '#/components/schemas/ArrInstance'
'400':
description: Invalid request
'409':
description: An instance with this URL already exists for this type
/api/arr/instances/{id}:
get:
tags:
- ARR Integrations
summary: Get ARR instance
description: Get a single Sonarr/Radarr instance by ID
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: ARR instance details
content:
application/json:
schema:
$ref: '#/components/schemas/ArrInstance'
'404':
description: ARR instance not found
put:
tags:
- ARR Integrations
summary: Update ARR instance
description: Update an existing Sonarr/Radarr instance configuration
parameters:
- name: id
in: path
required: true
schema:
type: integer
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ArrInstanceUpdate'
responses:
'200':
description: ARR instance updated
content:
application/json:
schema:
$ref: '#/components/schemas/ArrInstance'
'404':
description: ARR instance not found
'409':
description: An instance with this URL already exists for this type
delete:
tags:
- ARR Integrations
summary: Delete ARR instance
description: Delete an ARR instance configuration
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'204':
description: ARR instance deleted successfully
'404':
description: ARR instance not found
/api/arr/instances/{id}/test:
post:
tags:
- ARR Integrations
summary: Test ARR instance
description: Test connectivity to an existing ARR instance
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
'200':
description: Test result
content:
application/json:
schema:
$ref: '#/components/schemas/ArrTestResponse'
'404':
description: ARR instance not found
/api/arr/test:
post:
tags:
- ARR Integrations
summary: Test ARR connection
description: Test connectivity to an ARR instance before saving
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ArrTestConnectionRequest'
responses:
'200':
description: Test result
content:
application/json:
schema:
$ref: '#/components/schemas/ArrTestResponse'
'400':
description: Invalid request
/api/arr/resolve:
post:
tags:
- ARR Integrations
summary: Resolve title to external IDs
description: Use configured ARR instances to resolve a title to external IDs (IMDb, TMDb, TVDb, TVMaze)
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ArrResolveRequest'
responses:
'200':
description: Resolved IDs
content:
application/json:
schema:
$ref: '#/components/schemas/ArrResolveResponse'
'400':
description: Invalid request
'500':
description: Failed to resolve title
/api/instances:
get:
tags:
- Instances
summary: List instances
description: Get all configured qBittorrent instances
responses:
'200':
description: List of instances
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Instance'
post:
tags:
- Instances
summary: Add instance
description: Add a new qBittorrent instance
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- name
- host
- username
- password
properties:
name:
type: string
host:
type: string
format: uri
username:
type: string
password:
type: string
writeOnly: true
description: Password for qBittorrent instance. Will be encrypted and never returned in responses.
basicUsername:
type: string
nullable: true
description: Optional basic auth username
basicPassword:
type: string
nullable: true
writeOnly: true
description: Optional basic auth password. Will be encrypted and never returned in responses.
tlsSkipVerify:
type: boolean
description: Set to true to disable TLS certificate verification (for trusted self-signed certificates).
hasLocalFilesystemAccess:
type: boolean
description: Set to true if qui can access this instance's download paths locally (required for hardlink detection in automations).
useHardlinks:
type: boolean
description: Enable hardlink mode for cross-seed operations on this instance.
hardlinkBaseDir:
type: string
description: Base directory for hardlink trees when hardlink mode is enabled.
hardlinkDirPreset:
type: string
enum: [flat, by-tracker, by-instance]
description: Directory organization preset for hardlink mode.
linkDirName:
type: string
description: Optional override for the folder name used by the by-instance hardlink/reflink preset.
responses:
'201':
description: Instance created
content:
application/json:
schema:
$ref: '#/components/schemas/Instance'
/api/instances/order:
put:
tags:
- Instances
summary: Reorder instances
description: Update the display order for all configured instances. The list must include every instance ID exactly once.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- instanceIds
properties:
instanceIds:
type: array
items:
type: integer
description: Instance IDs in the desired display order.
responses:
'200':
description: Updated list of instances in the new order
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Instance'
'400':
description: Invalid reorder request
'500':
description: Failed to persist the new instance order
/api/instances/{instanceID}:
put:
tags:
- Instances
summary: Update instance
description: Update instance configuration
parameters:
- $ref: '#/components/parameters/instanceID'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
name:
type: string
host:
type: string
format: uri
username:
type: string
password:
type: string
writeOnly: true
description: Password for qBittorrent instance. Optional for updates - only updates if provided and not masked.
basicUsername:
type: string
nullable: true
description: Optional basic auth username
basicPassword:
type: string
nullable: true
writeOnly: true
description: Optional basic auth password. For updates - provide new password to update, omit field to keep existing, or empty string to remove basic auth.
tlsSkipVerify:
type: boolean
description: Set to true to disable TLS certificate verification (for trusted self-signed certificates).
hasLocalFilesystemAccess:
type: boolean
description: Set to true if qui can access this instance's download paths locally (required for hardlink detection in automations).
useHardlinks:
type: boolean
description: Enable hardlink mode for cross-seed operations on this instance.
hardlinkBaseDir:
type: string
description: Base directory for hardlink trees when hardlink mode is enabled.
hardlinkDirPreset:
type: string
enum: [flat, by-tracker, by-instance]
description: Directory organization preset for hardlink mode.
linkDirName:
type: string
description: Optional override for the folder name used by the by-instance hardlink/reflink preset.
responses:
'200':
description: Instance updated
delete:
tags:
- Instances
summary: Delete instance
description: Remove a qBittorrent instance
parameters:
- $ref: '#/components/parameters/instanceID'
responses:
'204':
description: Instance deleted
'404':
description: Instance not found
/api/instances/{instanceID}/status:
put:
tags:
- Instances
summary: Update instance status
description: Enable or disable automatic polling for the specified instance
parameters:
- $ref: '#/components/parameters/instanceID'
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- isActive
properties:
isActive:
type: boolean
description: Set to false to pause all automatic connections to the upstream qBittorrent instance.
responses:
'200':
description: Instance status updated
content:
application/json:
schema:
$ref: '#/components/schemas/Instance'
'404':
description: Instance not found
'500':
description: Failed to update instance status
/api/instances/{instanceID}/test:
post:
tags:
- Instances
summary: Test connection
description: Test connection to a qBittorrent instance
parameters:
- $ref: '#/components/parameters/instanceID'
responses:
'200':
description: Connection successful
'503':
description: Connection failed