-
Notifications
You must be signed in to change notification settings - Fork 7
/
apiary.apib
4827 lines (3010 loc) · 100 KB
/
apiary.apib
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
FORMAT: 1A
HOST: https://api.dagpi.xyz
# Dagpi
A hyper fast and powerful Image Manipulation/ Data Serving api written with a variety of languages to maximize performance.
## Tokens
Dagpi Relies on Secure Tokens to allow you to authenticate with the API. In order to get a token, begin by visiting the dashboard at
https://dagpi.xyz/dashboard
**Yes the dashboard has a dark mode, click on the moon.**
<img src="https://i.imgur.com/APmRzO9.png" />
In the following screen Login with your discord account.
<img src="https://i.imgur.com/fzsMaKl.png" />
After signing in you will be prompted to `Create App` Click on that .
<img src="https://i.imgur.com/6Vh9WTJ.png" />
Fill out the form you are redirected to
<img src="https://i.imgur.com/fTvgSwC.png" />
Now you will get a screen that says your app is undergoing approval.
<img src="https://i.imgur.com/GxDunk3.png" />
**Now your app will undergo approval. This should talke <24 hours. Please Join our discord for additional support.**
[Discord Server](https://server.daggy.tech)
Once your app is approved. You'll get access to a dashboard!
<img src="https://i.imgur.com/eejU2cF.png" />
<img src="https://i.imgur.com/mgAXitK.png" />
## CLI tokens
Dagpi-CLI is an easy way for you to manage your dagpi app, as well as enjoy additional features like viewing wether dagpi is online or not.
The dagpi CLI can be installed on most major platforms with a plethora of ways.
What is Cargo?
Cargo is the rust package manager. If you installed rust on your system, you should have it. You can check with `cargo -V`.
Using cargo isn't essential, but it is an easy way to install the CLI if rust is present.
### Installation
#### Windows
##### with cargo
```shell
cargo install --git https://github.com/Daggy1234/dagpi-cli --branch main dagpi
```
##### with binary
1) Head to releases and download the latest `x86_64-pc-windows-msvc.zip`, extract it and find the `dagpi.exe` binary!
2) Add the path of the exe file to windows path [guide here](https://www.mathworks.com/matlabcentral/answers/94933-how-do-i-edit-my-system-path-in-windows)
3) Restart your terminal and the cli should work
4) CLI can be updated with a simple `dagpi update`
#### macOS
##### with cargo
```shell
cargo install --git https://github.com/Daggy1234/dagpi-cli --branch main dagpi
```
##### with homebrew
```shell
brew tap daggy1234/tap
brew install dagpi --verbose
```
##### binary
1) Install the latest macos binary `dagpi-macos`
2) Give it executeable permission
3) Move to path
4) Test it out
Below is a convinence script. For user installation
```shell
curl -s -L https://github.com/Daggy1234/dagpi-cli/releases/download/v0.4.2/dagpi-0.4.2-x86_64-apple-darwin.tar.gz | tar -xvz -O > ~/.local/bin/dagpi
chmod +x ~/.local/bin/dagpi
```
You can auto update this binary also with `dagpi update`.
#### Linux
##### with cargo
```shell
cargo install --git https://github.com/Daggy1234/dagpi-cli --branch main dagpi
```
##### Binary
1) Download the binary for your CPU architecture (x86_64, aarch)
2) Add executeable perms to the binary
3) Copy binary to your user's path
4) Test it. Script below
This for x86_64 linux.Most desktop computers are x86_64 .Based on the type of CPU you have, you may need to change the platform. For example rasberry pi's don't use x86_64. Rasberry pi users should use our `arm` binaries. Double check your CPU architecture.
```shell
curl -s -L https://github.com/Daggy1234/dagpi-cli/releases/download/v0.4.2/dagpi-0.4.2-x86_64-unknown-linux-gnu.tar.gz | tar -xvz -O > ~/.local/bin/dagpi
chmod +x ~/.local/bin/dagpi
```
### Updates
#### Cargo Updates
You have to rebuild
```shell
cargo install --git https://github.com/Daggy1234/dagpi-cli --branch main dagpi
```
#### with binary
Dagpi binary updates are pretty nifty. Just do
```cargo
dagpi update
```
and it should handle the rest!
#### Package Managers
Use your package managers update command
### Using CLI
Just use
```shell
dagpi -h
```
to view all available commands and help.
TO get the CLI setup use to get redirected to the login window
```shell
dagpi login
```
<img src="https://i.imgur.com/e8GHvJr.png" />
Create a new token on the web page opened.
<img src="https://i.imgur.com/S75C1wQ.png" />
Then Export the token you created by clicking on the pink terminal export button!
<img src="https://i.imgur.com/bnlarlE.png" />
<img src="https://i.imgur.com/VS8H8Zo.png" />
## Code
All of the dagpi code is open source. We will have a deployment guide out soon, but you can simply use the Github Repos for now.
* https://github.com/Daggy1234/dagpi
* https://github.com/Daggy1234/dagpi-dashboard
* https://github.com/Daggy1234/dagpi-data
* https://github.com/Daggy1234/dagpi-auth
* https://github.com/Daggy1234/dagpi-image
* https://github.com/Daggy1234/dagpi-central
## Wrappers
If making manual API requests is a pain, use some API wrappers that abstract that logic. The website homepage has a wrappers page and our discord has a channel with all the wrappers present.
## Misc
You can read our detailed terms at the Following:
## Terms & Conditions
https://dagpi.xyz/terms
## Privacy Policy
https://dagpi.xyz/privacy
## Contact
email: contact@dagpi.xyz
Discord: Daggy#1234
## Chat
We have a vibrant discord community that you can join for help with the api, updates, and much more.
[![Discord Banner 3](https://discordapp.com/api/guilds/491175207122370581/widget.png?style=banner3)](https://server.daggy.tech)
# Group Data API
A powerful tool to serve high quality Datasets.
## Who's That Pokemon? [GET /data/wtp]
Allows you to get a Dagpi WTP object
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"Data": {
"Type": [
"steel",
"ghost"
],
"abilities": [
"stance change"
],
"ascii": "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@,*.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@@@@@@:,**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@@@@@%*:**?@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@@@@@%@**.S@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@@@@.@***+S@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@@@@:::#.SSS@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@S*@@@@S:,**S++.@@@@%:@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@:#*:@@:::**SSS+%?***@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@%***:@@::**.SSS+?+SS+@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@#%%SS...,@...*..%?SS%??S@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@??%?*@@,S.%S....S??++S+#@?...?@@@@@@@@@@@@@@@@@\n@@@@@@@@@@%%%%@@@@@@@@#*++#?%++*:@@@@@@@@.....@@@@@@@@@@@@@@\n@@@@@@@@?%%@@@@@@@@@@@.,******::?@@@@@@@@@@@.%..@@@@@@@@@@@@\n@@@@@@@%%%#@@@@@@@@@@@%:******#:@@@@@@@@@%:#:::::::.@@@@@@@@\n@@@@@@....?@@@@@@@@@@@,*******,,@@@@@@.*::*:::.#:::*:::@@@@@\n@@@@@?.....@@@@@@@@@@@:?******:,@@@@?***::::#...#:,,,#***@@@\n@@@@@......@@@@@@@@@@,::******,@@@@S**::*:#.::::#::,:::.**@@\n@@@@..%.%..@@@@@@@@@@*:***@@@@@,@@...:::::?:#%%::#::::::S..@\n@@@*....++.#@@@@@@@@@:.@@@@@@@@,@@..?:.::?%**.S**::::::::..:\n@@@....%.S*.@@@@@@@@.@@@@@@@**:,*@.#.+?**S..#..*****:+***++:\n@@@.....****S@@@@@@@@@@@@***::.,,@...%?+#..+#++#%?%++%**?..,\n@@+******.***@@@@@@@@*****:::::,,,@.+%..?.S+*?+++..+.+++?.S@\n@@***.***#.***@@@@+@,***:::::::?,,?,++.+%******.?.%.......@@\n@%.**%***?****.@@S,:::::::::::::,,,@@S.++.****:**?......@@@@\n@****.****:.****@@.,,:::::::::,,,:.,@@@*...****....S+%@@@@@@\n.****+**..,..*@@@@@.,,::::::S,,,+@@@@@@@@@@@%#.%%@@@@@@@@@@@\n@@,*.?:,@@@@@@@@@@@%,,,,,:S,,,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@:,,,,,+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@%,,,,,?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n@@@@@@@@@@@@@@@@@@@@@@@@?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
"height": 1.7000000476837158,
"id": 681.0,
"link": "http://pokemondb.net/pokedex/aegislash",
"name": "Aegislash",
"weight": 116.80000305175781
},
"answer": "https://logoassetsgame.s3.us-east-2.amazonaws.com/wtp/pokemon/646a.png",
"question": "https://logoassetsgame.s3.us-east-2.amazonaws.com/wtp/pokemon/646q.png"
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Roast [GET /data/roast]
Allows you to get a Roast.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"roast": "If you really want to know about mistakes, you should ask your parents."
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Joke [GET /data/joke]
Gets a nice edgy Joke. Might be Offensive/NSFW.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"id": "228137",
"joke": "Why did Jesus quit playing ice hockey? He kept getting nailed to the boards."
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Fact [GET /data/fact]
Gets a random fun fact.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"fact": "Chocolate can kill dogs; it directly affects their heart and nervous system."
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## 8ball [GET /data/8ball]
Gets a random 8ball response.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"response": "My reply is no."
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## YoMama [GET /data/yomama]
Gets a nice Yo-Mama Joke. Might be Offensive/NSFW.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"description": "Yo mama is so fat that she has two watches one for each time zone she's in"
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Random Waifu [GET /data/waifu]
Random Japanese Waifu.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"age": "",
"appearances": [
{
"airing_end": null,
"airing_start": null,
"description": "",
"display_picture": "",
"episode_count": 26,
"name": "Ouran Koukou Host Club",
"original_name": null,
"release": null,
"romaji_name": null,
"slug": "ouran-koukou-host-club",
"studio": null
}
],
"birthday_day": "0",
"birthday_month": "",
"birthday_year": "",
"blood_type": "",
"bust": "0.00",
"creator": {
"id": 19580,
"name": "heat_days"
},
"description": "The Host Club's (self-proclaimed) manageress who tends to be very loud and outspoken. She grew up in France before she came to attend Ouran, right after she saw Kyoya in a picture her dad gave her. Renge first came across the Host Club by maintaining the belief she was Kyoya's fiancée despite never having met him in person. This is due to her love of visual novel-type video games to a point that she sometimes confuses them with real life. Her fascination with Kyoya originated from her obsession with one such dating game. Still, her experience with dating sims causes her to be more aware of character development and a thickening plot. Tamaki initially allowed Renge to become the host club's manager in hopes that she would be a female friend to Haruhi and inspire her to act and dress more feminine.",
"display_picture": "https://thicc.mywaifulist.moe/waifus/10401/ac3a9c41b18ac17d79e8b7ca36100e3a30a1f9d8d2a551bd15a5fd5e0e9dee03_thumb.jpeg",
"height": "0.00",
"hip": "0.00",
"husbando": false,
"id": 10401,
"like_rank": 8919,
"likes": 21,
"name": "Renge Houshakuji",
"nsfw": false,
"origin": "",
"original_name": "",
"popularity_rank": 6776,
"romaji_name": "",
"series": {
"airing_end": null,
"airing_start": null,
"description": "",
"display_picture": "",
"episode_count": 26,
"name": "Ouran Koukou Host Club",
"original_name": null,
"release": null,
"romaji_name": null,
"slug": "ouran-koukou-host-club",
"studio": null
},
"slug": "renge-houshakuji",
"tags": [],
"trash": 21,
"trash_rank": 3337,
"url": "https://www.mywaifulist.moe/waifu/renge-houshakuji",
"waist": "0.00",
"weight": "0.00"
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
### Waifu Saerch [GET /{waifu}]
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Parameters
+ waifu: Stella Hoshii (string, required) - waifu to search
+ Response 200 (application/json)
{
"age": 0,
"appearances": [
{
"airing_end": null,
"airing_start": null,
"description": "VA-11 HALL-A: Cyberpunk Bartender Action (also sometimes written as Valhalla) is an indie bartender simulation video game with visual novel elements as well as cyberpunk and anime-inspired visuals, developed by Venezuelan studio Sukeban Games and published by Ysbryd Games for Microsoft Windows, OS X, and Linux on June 21, 2016. The PlayStation Vita port was developed by Wolfgame and published by Limited Run Games. The game puts the player in the role of a bartender at the eponymous VA-11 HALL-A, a small bar in a dystopian downtown that is said to attract the \"most fascinating\" of people. \r\n\r\nThe gameplay consists of players making and serving drinks to bar attendees whilst listening to the stories and experiences of said characters.",
"display_picture": "https://thicc.mywaifulist.moe/series/983/3d7282de3e82f88aa35b61f7d93f0df2c3d062ea169a4a71b41e8203f8462ed2.jpeg",
"episode_count": null,
"name": "VA-11 Hall-A: Cyberpunk Bartender Action",
"original_name": null,
"release": null,
"romaji_name": null,
"slug": "va-11-hall-a-cyberpunk-bartender-action",
"studio": null
}
],
"birthday_day": "25",
"birthday_month": "December",
"birthday_year": "",
"blood_type": "",
"bust": "0.00",
"creator": {
"id": 23563,
"name": "bestwaifu"
},
"description": "Stella Hoshii is the daughter of wealthy parents and a regular customer at VA-11 Hall-A. She is also a Cat Boomer and a long time friend of Sei Asagiri.\r\n\r\nShe often acts in a prideful manner, shown when initially meeting her, and when Sei isn't around. However, she's a kind person at heart, as shown during Mega-Christmas when she buys a large number of gifts for the children in her family.\r\n\r\nShe also hides her true feelings under her usual haughty demeanor, as evidenced when Sei was heavily injured at the Apollo Bank incident. It is also evidenced in a more lighthearted manner when she often tries to hide her status as a fan of *Kira* Miki's music, as shown from her reaction upon seeing *Kira* Miki's signed glass.",
"display_picture": "https://thicc.mywaifulist.moe/waifus/16348/180b66172ded878a374ae54ee3c4c219dae45d13215a17670d93268959f7df61_thumb.png",
"height": "0.00",
"hip": "0.00",
"husbando": false,
"id": 16348,
"like_rank": 6454,
"likes": 34,
"name": "Stella Hoshii",
"nsfw": false,
"origin": "",
"original_name": "",
"popularity_rank": 7834,
"romaji_name": "",
"series": {
"airing_end": null,
"airing_start": null,
"description": "VA-11 HALL-A: Cyberpunk Bartender Action (also sometimes written as Valhalla) is an indie bartender simulation video game with visual novel elements as well as cyberpunk and anime-inspired visuals, developed by Venezuelan studio Sukeban Games and published by Ysbryd Games for Microsoft Windows, OS X, and Linux on June 21, 2016. The PlayStation Vita port was developed by Wolfgame and published by Limited Run Games. The game puts the player in the role of a bartender at the eponymous VA-11 HALL-A, a small bar in a dystopian downtown which is said to attract the \"most fascinating\" of people. \r\n\r\nThe gameplay consists of players making and serving drinks to bar attendees whilst listening to the stories and experiences of said characters.",
"display_picture": "https://thicc.mywaifulist.moe/series/983/3d7282de3e82f88aa35b61f7d93f0df2c3d062ea169a4a71b41e8203f8462ed2.jpeg",
"episode_count": null,
"name": "VA-11 Hall-A: Cyberpunk Bartender Action",
"original_name": null,
"release": null,
"romaji_name": null,
"slug": "va-11-hall-a-cyberpunk-bartender-action",
"studio": null
},
"slug": "stella-hoshii",
"tags": [],
"trash": 1,
"trash_rank": 21608,
"url": "https://www.mywaifulist.moe/waifu/stella-hoshii",
"waist": "0.00",
"weight": "0.00"
}
+ Response 400 (application/json)
{
"alternatives": [
"stella-hoshii"
]
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Pickup Line [GET /data/pickupline]
Gets a Pickup line. Might be Offensive/NSFW.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"category": "cheesy/corny",
"joke": "Are you an interior decorator? ‘Cause when I saw you, the room became beautiful."
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Headline [GET /data/headline]
Gets a headline. Can be either fake or real.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"text":"Louisiana parish bans saggy pants; $50 fine for first offense",
"fake":true
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Guess The Logo [GET /data/logo]
Random Logo Game. Gets logo Json. 2 Formats/
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"answer": "https://logoassetsgame.s3.us-east-2.amazonaws.com/logogame/logos/l_d_barclays_o.png",
"brand": "Barclays",
"clue": "British multinational banking and financial services company.|Operations in retail, wholesale and investment banking, wealth management, mortgage lending.",
"easy": true,
"hint": "_ar__a_s",
"question": "https://logoassetsgame.s3.us-east-2.amazonaws.com/logogame/logos/l_d_barclays.png",
"wiki_url": "https://en.wikipedia.org/wiki/Barclays"
}
+ Response 403 (application/json)
{
"error: "Uauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Flag [GET /data/flag]
Random Logo Game. Gets logo Json. 2 Formats/
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"Data": {
"altSpellings": [
"DK",
"Danmark",
"Kingdom of Denmark",
"Kongeriget Danmark"
],
"area": 43094.0,
"borders": [
"DEU"
],
"callingCode": [
"45"
],
"capital": "Copenhagen",
"cca2": "DK",
"cca3": "DNK",
"ccn3": "208",
"currency": [
"DKK"
],
"denonym": null,
"landlocked": false,
"languages": {
"dan": "Danish"
},
"latlng": [
56.0,
10.0
],
"name": {
"common": "Denmark",
"native": {
"dan": {
"common": "Danmark",
"official": "Kongeriget Danmark"
}
},
"official": "Kingdom of Denmark"
},
"region": "Europe",
"subregion": "Northern Europe",
"tld": [
".dk"
],
"translations": {
"cym": {
"common": "Denmarc",
"official": "Teyrnas Denmarc"
},
"deu": {
"common": "Dänemark",
"official": "Königreich Dänemark"
},
"fin": {
"common": "Tanska",
"official": "Tanskan kuningaskunta"
},
"fra": {
"common": "Danemark",
"official": "Royaume du Danemark"
},
"hrv": {
"common": "Danska",
"official": "Kraljevina Danska"
},
"ita": {
"common": "Danimarca",
"official": "Regno di Danimarca"
},
"jpn": {
"common": "デンマーク",
"official": "デンマーク王国"
},
"nld": {
"common": "Denemarken",
"official": "Koninkrijk Denemarken"
},
"por": {
"common": "Dinamarca",
"official": "Reino da Dinamarca"
},
"rus": {
"common": "Дания",
"official": "Королевство Дания"
},
"slk": {
"common": "Dánsko",
"official": "Dáske kráľovstvo"
},
"spa": {
"common": "Dinamarca",
"official": "Reino de Dinamarca"
},
"zho": {
"common": "丹麦",
"official": "丹麦王国"
}
}
},
"flag": "https://logoassetsgame.s3.us-east-2.amazonaws.com/flags/denmark.png"
}
+ Response 403 (application/json)
{
"error: "Unauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Captcha [GET /data/captcha]
get a random captcha
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |
+ Request
+ Headers
Authorization: token
+ Response 200 (application/json)
{
"image": "https://cdn.dagpi.xyz/captcha/22401.png",
"answer": "7pcd7"
}
+ Response 403 (application/json)
{
"error: "Unauthorized"
}
+ Response 429 (application/json)
{
"error: "Ratelimited"
}
+ Response 500 (application/json)
{
"error: "Internal Server Error"
}
## Typeracer [GET /data/typeracer]
get a sentence on an image, with a sentence to create typeracer games.
#### Headers
| Header | Value |
| :------------- | -----------: |
| Authorization | Token |