-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenapi.yaml
2030 lines (2028 loc) · 51.6 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.1
info:
title: CurseForge API
description: HTTP API for CurseForge
version: 1.0.0
servers:
- url: https://api.curseforge.com
tags:
- name: Games
- name: Categories
- name: Mods
- name: Files
- name: Fingerprints
- name: Minecraft
paths:
/v1/games:
get:
tags:
- Games
summary: Get games
description: Get all games that are available to the provided API key.
operationId: getGames
parameters:
- name: index
in: query
description: >-
A zero based index of the first item to include in the response, the
limit is: (index + pageSize <= 10,000).
required: false
schema:
type: integer
format: int32
- name: pageSize
in: query
description: >-
The number of items to include in the response, the default/maximum
value is 50.
required: false
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetGamesResponse'
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/games/{gameId}:
get:
tags:
- Games
summary: Get game
description: >-
Get a single game. A private game is only accessible by its respective
API key.
operationId: getGame
parameters:
- name: gameId
in: path
description: A game unique id
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetGameResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/games/{gameId}/versions:
get:
tags:
- Games
summary: Get versions
description: >-
Get all available versions for each known version type of the specified
game. A private game is only accessible to its respective API key.
operationId: getVersions
parameters:
- name: gameId
in: path
description: A game unique id
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetVersionsResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v2/games/{gameId}/versions:
get:
tags:
- Games
summary: Get versions
description: >-
Get all available versions for each known version type of the specified
game. A private game is only accessible to its respective API key.
operationId: getVersionsV2
parameters:
- name: gameId
in: path
description: A game unique id
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetVersionsV2Response'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/games/{gameId}/version-types:
get:
tags:
- Games
summary: Get version types
description: >
Get all available version types of the specified game.
A private game is only accessible to its respective API key.
Currently, when creating games via the CurseForge Core Console, you are
limited to a single game version type. This means that this endpoint is
probably not useful in most cases and is relevant mostly when handling
existing games that have multiple game versions such as World of
Warcraft and Minecraft (e.g. 517 for wow_retail).
operationId: getVersionTypes
parameters:
- name: gameId
in: path
description: A game unique id
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetVersionTypesResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/categories:
get:
tags:
- Categories
summary: Get categories
description: >-
Get all available classes and categories of the specified game. Specify
a game id for a list of all game categories, or a class id for a list of
categories under that class.
operationId: getCategories
parameters:
- name: gameId
in: query
description: A game unique id
required: true
schema:
type: integer
format: int32
- name: classId
in: query
description: A class unique id
required: false
schema:
type: integer
format: int32
- name: classesOnly
in: query
description: A flag used to only return classes
required: false
schema:
type: boolean
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetCategoriesResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/search:
get:
tags:
- Mods
summary: Get all mods that match the search criteria.
description: Get all mods that match the search criteria.
operationId: searchMods
parameters:
- name: gameId
in: query
description: Filter by game id.
required: true
schema:
type: integer
format: int32
- name: classId
in: query
description: Filter by section id (discoverable via Categories)
required: false
schema:
type: integer
format: int32
- name: categoryId
in: query
description: Filter by category id
required: false
schema:
type: integer
format: int32
- name: gameVersion
in: query
description: Filter by game version string
required: false
schema:
type: string
- name: searchFilter
in: query
description: Filter by free text search in the mod name and author
required: false
schema:
type: string
- name: sortField
in: query
description: Filter by ModsSearchSortField enumeration
required: false
schema:
$ref: '#/components/schemas/ModsSearchSortField'
- name: sortOrder
in: query
description: >
'asc' if sort is in ascending order, 'desc' if sort is in descending
order
required: false
schema:
$ref: '#/components/schemas/SortOrder'
- name: modLoaderType
in: query
description: >
Filter only mods associated to a given modloader (Forge, Fabric
...). Must be coupled with gameVersion.
required: false
schema:
$ref: '#/components/schemas/ModLoaderType'
- name: gameVersionTypeId
in: query
description: >-
Filter only mods that contain files tagged with versions of the
given gameVersionTypeId
required: false
schema:
type: integer
format: int32
- name: authorId
in: query
description: >-
Filter only mods that the given authorId is a member of.
required: false
schema:
type: integer
format: int32
- name: slug
in: query
description: >-
Filter by slug (coupled with classId will result in a unique
result).
required: false
schema:
type: string
- name: index
in: query
description: >-
A zero based index of the first item to include in the response, the
limit is: (index + pageSize <= 10,000).
required: false
schema:
type: integer
format: int32
- name: pageSize
in: query
description: >-
The number of items to include in the response, the default/maximum
value is 50.
required: false
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/SearchModsResponse'
'400':
description: Bad Request
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/{modId}:
get:
tags:
- Mods
summary: Get a single mod.
description: Get a single mod.
operationId: getMod
parameters:
- name: modId
in: path
description: The mod id.
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetModResponse'
'404':
description: Not found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods:
post:
tags:
- Mods
summary: Get a list of mods.
description: Get a list of mods.
operationId: getMods
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetModsByIdsListRequestBody'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetModsResponse'
'400':
description: Bad Request
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/featured:
post:
tags:
- Mods
summary: Get featured mods.
description: Get a list of featured, popular and recently updated mods.
operationId: getFeaturedMods
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetFeaturedModsRequestBody'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetFeaturedModsResponse'
'400':
description: Bad Request
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/{modId}/description:
get:
tags:
- Mods
summary: Get mod description.
description: Get the full description of a mod in HTML format.
operationId: getModDescription
parameters:
- name: modId
in: path
description: The mod id.
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ModDescriptionResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/{modId}/files/{fileId}:
get:
tags:
- Files
summary: Get mod file.
description: Get a single file of the specified mod.
operationId: getModFile
parameters:
- name: modId
in: path
description: The mod id the file belongs to
required: true
schema:
type: integer
format: int32
- name: fileId
in: path
description: The file id.
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetModFileResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/{modId}/files:
get:
tags:
- Files
summary: Get mod files.
description: Get all files of the specified mod.
operationId: getModFiles
parameters:
- name: modId
in: path
description: The mod id the files belong to
required: true
schema:
type: integer
format: int32
- name: gameVersion
in: query
description: Filter by game version string
required: false
schema:
type: string
- name: modLoaderType
in: query
required: false
description: >
ModLoaderType enumeration Filter only files associated to a given
modloader (Forge, Fabric ...).
schema:
$ref: '#/components/schemas/ModLoaderType'
- name: gameVersionTypeId
in: query
description: >-
Filter only files that are tagged with versions of the given
gameVersionTypeId
required: false
schema:
type: integer
format: int32
- name: index
in: query
description: >-
A zero based index of the first item to include in the response, the
limit is: (index + pageSize <= 10,000).
required: false
schema:
type: integer
format: int32
- name: pageSize
in: query
description: >-
The number of items to include in the response, the default/maximum
value is 50.
required: false
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetModFilesResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/files:
post:
tags:
- Files
summary: Get files
description: Get a list of files.
operationId: getFiles
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetModFilesRequestBody'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetFilesResponse'
'400':
description: Bad Request
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/{modId}/files/{fileId}/changelog:
get:
tags:
- Files
summary: Get mod file changelog
description: Get the changelog of a file in HTML format.
operationId: getModFileChangelog
parameters:
- name: modId
in: path
description: The mod id the file belongs to
required: true
schema:
type: integer
format: int32
- name: fileId
in: path
description: The file id.
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetModFileChangelogResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/mods/{modId}/files/{fileId}/download-url:
get:
tags:
- Files
summary: Get Mod File Download URL
description: Get a download url for a specific file.
operationId: getModFileDownloadURL
parameters:
- name: modId
in: path
description: The mod id the file belongs to
required: true
schema:
type: integer
format: int32
- name: fileId
in: path
description: The file id.
required: true
schema:
type: integer
format: int32
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetModFileDownloadURLResponse'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/fingerprints:
post:
tags:
- Fingerprints
summary: Get Fingerprints Matches
description: Get mod files that match a list of fingerprints (murmur2 hashes with seed 1).
operationId: getFingerprintMatches
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetFingerprintMatchesRequestBody'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetFingerprintMatchesResponse'
'400':
description: Bad Request
'503':
description: Service Unavailable
security:
- ApiKeyAuth: [ ]
/v1/fingerprints/{gameId}:
post:
tags:
- Fingerprints
summary: Get Fingerprints Matches
description: Get mod files that match a list of fingerprints.
operationId: getFingerprintMatchesByGame
parameters:
- name: gameId
in: path
description: The game id the find matches in
required: true
schema:
type: integer
format: int32
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetFingerprintMatchesRequestBody'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetFingerprintMatchesResponse'
'400':
description: Bad Request
'503':
description: Service Unavailable
security:
- ApiKeyAuth: [ ]
/v1/fingerprints/fuzzy:
post:
tags:
- Fingerprints
summary: Get Fingerprints Fuzzy Matches
description: Get mod files that match a list of fingerprints using fuzzy matching.
operationId: getFingerprintFuzzyMatches
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetFuzzyMatchesRequestBody'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetFingerprintFuzzyMatchesResponse'
'400':
description: Bad Request
'503':
description: Service Unavailable
security:
- ApiKeyAuth: [ ]
/v1/fingerprints/fuzzy/{gameId}:
post:
tags:
- Fingerprints
summary: Get Fingerprints Fuzzy Matches
description: Get mod files that match a list of fingerprints using fuzzy matching.
operationId: getFingerprintFuzzyMatchesByGame
parameters:
- name: gameId
in: path
description: The game id the find matches in
required: true
schema:
type: integer
format: int32
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GetFuzzyMatchesRequestBody'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/GetFingerprintFuzzyMatchesResponse'
'400':
description: Bad Request
'503':
description: Service Unavailable
security:
- ApiKeyAuth: [ ]
/v1/minecraft/version:
get:
tags:
- Minecraft
summary: Get Minecraft Versions
description: Get Minecraft Versions
operationId: getMinecraftVersions
parameters:
- name: sortDescending
in: query
required: false
schema:
type: boolean
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponseOfListOfMinecraftGameVersion'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/minecraft/version/{gameVersionString}:
get:
tags:
- Minecraft
summary: Get Specific Minecraft Version
description: Get Specific Minecraft Version
operationId: getSpecificMinecraftVersion
parameters:
- name: gameVersionString
in: path
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponseOfMinecraftGameVersion'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/minecraft/modloader:
get:
tags:
- Minecraft
summary: Get Minecraft ModLoaders
description: Get Minecraft ModLoaders
operationId: getMinecraftModLoaders
parameters:
- name: version
in: query
required: false
schema:
type: string
- name: includeAll
in: query
required: false
schema:
type: boolean
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: >-
#/components/schemas/ApiResponseOfListOfMinecraftModLoaderIndex
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
/v1/minecraft/modloader/{modLoaderName}:
get:
tags:
- Minecraft
summary: Get Specific Minecraft ModLoader
description: Get Specific Minecraft ModLoader
operationId: getSpecificMinecraftModLoader
parameters:
- name: modLoaderName
in: path
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ApiResponseOfMinecraftModLoaderVersion'
'404':
description: Not Found
'500':
description: Internal Server Error
security:
- ApiKeyAuth: [ ]
components:
schemas:
ApiResponseOfListOfMinecraftGameVersion:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/MinecraftGameVersion'
ApiResponseOfListOfMinecraftModLoaderIndex:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/MinecraftModLoaderIndex'
ApiResponseOfMinecraftGameVersion:
type: object
properties:
data:
$ref: '#/components/schemas/MinecraftGameVersion'
ApiResponseOfMinecraftModLoaderVersion:
type: object
properties:
data:
$ref: '#/components/schemas/MinecraftModLoaderVersion'
Category:
type: object
properties:
id:
type: integer
format: int64
gameId:
type: integer
format: int64
name:
type: string
slug:
type: string
url:
type: string
format: uri
iconUrl:
type: string
format: uri
dateModified:
type: string
format: date-time
isClass:
type: boolean
classId:
type: integer
format: int64
parentCategoryId:
type: integer
format: int64
displayIndex:
type: integer
format: int64
CoreApiStatus:
description: |
CoreApiStatus
Possible enum values:
* 1 = Private
* 2 = Public
type: integer
enum:
- 1
- 2
x-enumNames:
- Private
- Public
CoreStatus:
description: |
CoreStatus
Possible enum values:
* 1 = Draft
* 2 = Test
* 3 = PendingReview
* 4 = Rejected
* 5 = Approved
* 6 = Live
type: integer
enum:
- 1
- 2
- 3
- 4
- 5
- 6
x-enumNames:
- Draft
- Test
- PendingReview
- Rejected
- Approved
- Live
FeaturedModsResponse:
type: object
properties:
featured:
type: array
items:
$ref: '#/components/schemas/Mod'
popular:
type: array
items:
$ref: '#/components/schemas/Mod'
recentlyUpdated:
type: array
items:
$ref: '#/components/schemas/Mod'
File:
type: object
properties:
id: