-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.json
10106 lines (10106 loc) · 371 KB
/
test.json
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
[
{
"query": "My company is developing a movie recommendation system and we need a dataset of movies. Can you provide us with the details of the top 100 movies in the 'drama' genre? We would also like to have the trailers for these movies. Thank you in advance!",
"relevant APIs": [
[
"Netflix_v2",
"Search"
],
[
"Netflix_v2",
"Title Details"
],
[
"Netflix_v2",
"Title Trailers"
]
],
"type": "G1_category",
"query_id": 51754
},
{
"query": "I need to convert 1200 meters to kilometers and get a detailed answer for the conversion. Can you provide me with the measurement details and the result? Also, give me a list of all available measurements with unit details.",
"relevant APIs": [
[
"Measurement Unit Converter",
"Convert from one unit to another"
],
[
"Measurement Unit Converter",
"Measurements detailed"
]
],
"type": "G1_category",
"query_id": 12733
},
{
"query": "I work for a software development company and we are exploring different Java versions for our upcoming project. Can you provide a list of available Java versions along with their corresponding IDs?",
"relevant APIs": [
[
"Java Code Compiler",
"Java Versions"
]
],
"type": "G1_category",
"query_id": 86287
},
{
"query": "I'm planning a business trip to Johor Bahru next month. Can you provide me with the prayer times in Johor Bahru for the entire month? It would be helpful for me to schedule my meetings accordingly.",
"relevant APIs": [
[
"Waktu Solat",
"/solat/time"
],
[
"Waktu Solat",
"/solat/list"
]
],
"type": "G1_category",
"query_id": 71624
},
{
"query": "I'm a film student working on a project and I need to analyze movies from different genres. Can you help me discover movies in the genres of thriller, horror, and sci-fi? It would be great if you could provide me with the details and ratings of these movies.",
"relevant APIs": [
[
"Advanced Movie Search",
"Genre List"
],
[
"Advanced Movie Search",
"Search by Genre"
],
[
"Advanced Movie Search",
"Get Detailed Response"
]
],
"type": "G1_category",
"query_id": 77084
},
{
"query": "My company is launching a new cryptocurrency product and we need to monitor the news coverage. Can you fetch the top news articles from CoinDesk, Cointelegraph, Decrypt, and BSC News? It would be great if you could provide us with the article titles, descriptions, and thumbnail images. Thanks a lot!",
"relevant APIs": [
[
"Cryptocurrency News",
"CoinDesk"
],
[
"Cryptocurrency News",
"Cointelegraph"
],
[
"Cryptocurrency News",
"Decrypt"
],
[
"Cryptocurrency News",
"BSC News"
]
],
"type": "G1_category",
"query_id": 62735
},
{
"query": "As a cybersecurity analyst, I need to conduct a thorough investigation. Can you provide me with some tools and information? I need to generate a fake IP address to perform anonymous online searches. Furthermore, I would like to retrieve my current IP address to identify any potential security breaches.",
"relevant APIs": [
[
"IPInfoAPI",
"Generate IP"
],
[
"IPInfoAPI",
"Get IP"
]
],
"type": "G1_category",
"query_id": 71763
},
{
"query": "I am an automotive photographer and I need to remove the background from car images for a client. Can you please provide me with the available modes for background removal in the Cars Image Background Removal tool? Additionally, I would like to know the current version of the tool to ensure I have the latest enhancements.",
"relevant APIs": [
[
"Cars image background removal",
"Get list of available modes"
],
[
"Cars image background removal",
"Get version"
]
],
"type": "G1_category",
"query_id": 26696
},
{
"query": "My family and I are interested in cryptocurrencies and we want to read the latest news. Can you fetch the top news articles from CoinDesk, Bitcoinist, Cointelegraph, The Guardian, and BSC News? Thank you!",
"relevant APIs": [
[
"Cryptocurrency News",
"CoinDesk"
],
[
"Cryptocurrency News",
"Bitcoinist"
],
[
"Cryptocurrency News",
"Cointelegraph"
],
[
"Cryptocurrency News",
"The Guardian"
],
[
"Cryptocurrency News",
"BSC News"
]
],
"type": "G1_category",
"query_id": 4005
},
{
"query": "I'm planning a road trip with my friends next month, and we want to make sure we have access to the internet during our journey. Can you check the health of the utile-space API? Also, we need to find the IP addresses for the DNS of the domain 'example.com' to configure our devices.",
"relevant APIs": [
[
"utile-space",
"/health"
],
[
"utile-space",
"/dns/{domain}"
]
],
"type": "G1_category",
"query_id": 37914
},
{
"query": "Please fetch the user data for the user with ID '25458687581618176'. Additionally, provide me with detailed data about the 'minecraft' invite, including hidden data.",
"relevant APIs": [
[
"Discord Lookup",
"Get User Data"
],
[
"Discord Lookup",
"Get Invite Data"
]
],
"type": "G1_category",
"query_id": 38163
},
{
"query": "I want to verify if my email address '[email protected]' exists. Can you check if it's a valid email format as well? Please provide the status, message, and information including the reason, domain, provider, and whether it's a free email.",
"relevant APIs": [
[
"Email Checkup",
"/email/exist"
],
[
"Email Checkup",
"/email/format"
]
],
"type": "G1_category",
"query_id": 54623
},
{
"query": "I want to convert the angle of 10 radians to turns for a mathematical problem. Can you help me with the conversion? Furthermore, I would like to know the supported units for area and volume.",
"relevant APIs": [
[
"UnitConversion",
"/angle/:from/:to/:number"
],
[
"UnitConversion",
"/info"
],
[
"UnitConversion",
"/volume/:from/:to/:number"
]
],
"type": "G1_category",
"query_id": 80181
},
{
"query": "I'm writing an article about pets and I'm specifically looking for pet images with alt text in Portuguese. Can you help me find some?",
"relevant APIs": [
[
"Alt Bichinhos",
"Get All Languages"
],
[
"Alt Bichinhos",
"Get Portuguese Alt Text."
]
],
"type": "G1_category",
"query_id": 1327
},
{
"query": "I'm trying to confirm the existence of the email '[email protected]'. Can you please check if it exists and provide details such as the reason, domain, provider, and whether it is a free email? Also, validate the email format.",
"relevant APIs": [
[
"Email Checkup",
"/email/exist"
],
[
"Email Checkup",
"/email/format"
]
],
"type": "G1_category",
"query_id": 4177
},
{
"query": "I need to know the maximum number of uses and the creation date of the 'minecraft' invite. Additionally, fetch the user data for the user with ID '25458687581618176'.",
"relevant APIs": [
[
"Discord Lookup",
"Get Invite Data"
],
[
"Discord Lookup",
"Get User Data"
]
],
"type": "G1_category",
"query_id": 38158
},
{
"query": "My company is organizing a blockchain conference and we need to gather relevant news articles. Can you fetch the latest news from The Guardian, BSC News, and Decrypt? We are particularly interested in the article URL, title, description, and thumbnail. Please include the date of publication as well. Thank you!",
"relevant APIs": [
[
"Cryptocurrency News",
"The Guardian"
],
[
"Cryptocurrency News",
"BSC News"
],
[
"Cryptocurrency News",
"Decrypt"
]
],
"type": "G1_category",
"query_id": 21110
},
{
"query": "I am developing a mobile app that requires unit conversion functionality. Can you suggest an API that can handle unit conversion for different categories like speed, temperature, and time? Additionally, it would be helpful if the API provides information about the available units for each category. Please let me know.",
"relevant APIs": [
[
"unit converter",
"Transform Units Using The Get Method"
],
[
"unit converter",
"info"
]
],
"type": "G1_category",
"query_id": 54737
},
{
"query": "I'm a teacher and I want to introduce my students to the concept of summarizing videos. Can you provide me with a summary of the YouTube video titled 'The History of Ancient Rome' by CrashCourse? Please include the video author and ID as well.",
"relevant APIs": [
[
"YouTube Video Summarizer",
"/v1/youtube/summarizeVideoFromCache"
],
[
"YouTube Video Summarizer",
"/v1/youtube/summarizeVideoWithToken"
]
],
"type": "G1_category",
"query_id": 21241
},
{
"query": "My family and I are planning a weekend anime movie night. Can you suggest some highly ranked movies with different genres such as Adventure, Fantasy, and Sci-Fi? It would be great to have alternative titles and a brief synopsis for each movie.",
"relevant APIs": [
[
"Anime DB",
"Get All"
],
[
"Anime DB",
"Get one anime by ranking"
]
],
"type": "G1_category",
"query_id": 26565
},
{
"query": "Our company is committed to sustainability and we want to calculate the carbon emissions of our travel operations. Can you help us integrate the SQUAKE API into our system so that we can calculate the carbon emissions in real-time?",
"relevant APIs": [
[
"SQUAKE",
"Checkhealth"
],
[
"SQUAKE",
"Projects"
]
],
"type": "G1_category",
"query_id": 58603
},
{
"query": "I am conducting research on keyword trends and would like to explore the keyword 'email marketing' in India. Can you provide me with the search volume, competition level, and CPC for this keyword in India? Additionally, it would be helpful to know related keywords and their scores.",
"relevant APIs": [
[
"SEO Keyword Research",
"Keyword Research API"
],
[
"SEO Keyword Research",
"Global Result (single)"
]
],
"type": "G1_category",
"query_id": 71682
},
{
"query": "I need to calculate the KDA (kill + assists death ratio) for a recent game I played. I had 10 kills, 5 assists, and 2 deaths. Can you help me with that?",
"relevant APIs": [
[
"teamriverbubbles random utilities",
"kda calculator"
],
[
"teamriverbubbles random utilities",
"kd calculator"
]
],
"type": "G1_category",
"query_id": 12766
},
{
"query": "I am a movie critic and I want to review movies from a specific year. Can you fetch me a list of movies released in 2015, along with their directors and ratings?",
"relevant APIs": [
[
"IMDB_API",
"/get_movies_by_year"
],
[
"IMDB_API",
"/get_movies_by_director"
]
],
"type": "G1_category",
"query_id": 1209
},
{
"query": "I'm a journalist writing an article about viral videos. Can you assist me in finding trending videos and provide insights about them, including related videos?",
"relevant APIs": [
[
"Bing Video Search",
"Trending"
],
[
"Bing Video Search",
"Video Details"
]
],
"type": "G1_category",
"query_id": 68525
},
{
"query": "I have an image named 'photo.jpg' and I want to rotate it 90 degrees clockwise and flip it vertically. Can you also save it in the 'edited_images' folder?",
"relevant APIs": [
[
"Aspose.Imaging Cloud",
"ModifyJpeg2000"
],
[
"Aspose.Imaging Cloud",
"RotateFlipImage"
],
[
"Aspose.Imaging Cloud",
"GetImageFrameProperties"
]
],
"type": "G1_category",
"query_id": 68553
},
{
"query": "My family is planning a movie night and we need some family-friendly movies to watch. Can you recommend some movies suitable for children that are available on streaming services like Netflix, Prime Video, and Disney+? It would be great if you could provide the streaming links for these movies.",
"relevant APIs": [
[
"Streaming Availability",
"Search Ultra"
],
[
"Streaming Availability",
"Services (FREE)"
],
[
"Streaming Availability",
"Search By Title (FREE)"
]
],
"type": "G1_category",
"query_id": 34727
},
{
"query": "I want to surprise my friends with personalized invitations for my birthday party. Can you help me create custom QR codes with their names and a link to the party details? The link is 'https://www.partydetails.com/'. It would be great if each QR code color could be customized based on their favorite colors. Thank you!",
"relevant APIs": [
[
"Custom QR Code with Logo_v2",
"Simple QR Code"
]
],
"type": "G1_category",
"query_id": 86238
},
{
"query": "Generate a captcha and provide me with the UUID so that I can verify it later on.",
"relevant APIs": [
[
"Captcha",
"Generate Captcha"
],
[
"Captcha",
"Verify the captcha"
]
],
"type": "G1_category",
"query_id": 63135
},
{
"query": "I want to check the current inventory status of the tes store. Please use the getInventory API call to provide me with a map of status codes to quantities.",
"relevant APIs": [
[
"tes",
"getInventory"
],
[
"tes",
"getOrderById"
]
],
"type": "G1_category",
"query_id": 26666
},
{
"query": "As a cryptocurrency enthusiast, I want to explore different perspectives on the market. Can you fetch the recent news articles from CoinDesk, The Guardian, and BSC News? Please include the article URLs, titles, and thumbnails. Your help is highly appreciated!",
"relevant APIs": [
[
"Cryptocurrency News",
"CoinDesk"
],
[
"Cryptocurrency News",
"The Guardian"
],
[
"Cryptocurrency News",
"BSC News"
]
],
"type": "G1_category",
"query_id": 12537
},
{
"query": "I want to create a personalized avatar for my online gaming profile. Generate an avatar with a random image and a background color of #FF2029. Please use the first character 'G' for the avatar's name and a text color of #000000.",
"relevant APIs": [
[
"Avatar.io - MODERN AVATAR PLACEHOLDER API",
"Generate avatar"
]
],
"type": "G1_category",
"query_id": 86392
},
{
"query": "I am a huge Skillet fan and I want to download their latest music video. Please provide me with the download link, video title, and duration.",
"relevant APIs": [
[
"YTConvert",
"Url Download"
],
[
"YTConvert",
"Search"
]
],
"type": "G1_category",
"query_id": 37813
},
{
"query": "Please provide a random string of length 20 and a UUID without dashes. I need them for my personal project. Thank you for your assistance!",
"relevant APIs": [
[
"Helper Function",
"Random"
],
[
"Helper Function",
"Generate UUID"
]
],
"type": "G1_category",
"query_id": 29871
},
{
"query": "I'm planning a movie-themed party and I need to find movies with a specific genre ID. Can you search for movies with genre ID 123 and provide me with the details, including the title, overview, release date, and poster image?",
"relevant APIs": [
[
"Advanced Movie Search",
"Search by Genre"
],
[
"Advanced Movie Search",
"Get Detailed Response"
]
],
"type": "G1_category",
"query_id": 9598
},
{
"query": "I'm creating a social media post and I need a cute animal picture. Can you provide me with a random mlem image that is tagged as 'adorable' and has a minimum width of 300 pixels? Additionally, I would like to know the brightness, width, height, and orientation of the image.",
"relevant APIs": [
[
"MlemAPI",
"Random mlem"
],
[
"MlemAPI",
"Tags"
]
],
"type": "G1_category",
"query_id": 26690
},
{
"query": "As a frequent traveler, I need to know the current time in various time zones. Can you provide me with the current time in Coordinated Universal Time (UTC), Eastern Standard Time (EST), and Central European Time (CET)?",
"relevant APIs": [
[
"World Clock",
"Coordinated Universal Time"
],
[
"World Clock",
"Get Current Time (within a Timezone)"
]
],
"type": "G1_category",
"query_id": 21351
},
{
"query": "I'm organizing a movie marathon for my family this weekend and I need a list of family-friendly movies. Can you search for movies suitable for all ages on YTS and 1337x? Please provide movie names, genres, and available torrents.",
"relevant APIs": [
[
"Torrent-Search",
"Get from yts"
],
[
"Torrent-Search",
"Get from 1337.x"
]
],
"type": "G1_category",
"query_id": 12954
},
{
"query": "I need to find a suitable gift for my colleague's birthday. Fetch all the available products in the 'Gifts' category. Include the names, prices, and descriptions of these products.",
"relevant APIs": [
[
"👋 Demo Project_v13",
"Get Products in Category"
],
[
"👋 Demo Project_v13",
"Get Categories"
]
],
"type": "G1_category",
"query_id": 46444
},
{
"query": "I want to share the latest news about cryptocurrencies with my friends. Can you fetch the top articles from CoinDesk, BSC News, and Decrypt? Please include the article titles, descriptions, thumbnails, and publication dates.",
"relevant APIs": [
[
"Cryptocurrency News",
"CoinDesk"
],
[
"Cryptocurrency News",
"BSC News"
],
[
"Cryptocurrency News",
"Decrypt"
]
],
"type": "G1_category",
"query_id": 54488
},
{
"query": "I am planning a road trip and I need to convert different units for my calculations. Can you provide me with a list of supported units for length, mass, and volume? Additionally, I need to convert the angle from radians to turns for the directions. Please convert 5 radians to turns.",
"relevant APIs": [
[
"UnitConversion",
"/info"
],
[
"UnitConversion",
"/angle/:from/:to/:number"
]
],
"type": "G1_category",
"query_id": 37801
},
{
"query": "I'm planning a surprise birthday party for my best friend and need your help. Can you suggest some unique party themes, provide a list of party supplies we might need, and recommend some fun games and activities? Additionally, we would like to see some pictures of creative birthday cake designs.",
"relevant APIs": [
[
"nowyAPI",
"rereer_copy"
],
[
"nowyAPI",
"rereer"
]
],
"type": "G1_category",
"query_id": 1234
},
{
"query": "I'm a movie buff and I'm interested in movies from the 80s. Can you recommend some great films from that era? It would be fantastic to have the title, director, cast, and rating for each movie. Thanks a lot!",
"relevant APIs": [
[
"IMDB_API",
"/get_movies_by_year"
],
[
"IMDB_API",
"/get_movies_by_name"
]
],
"type": "G1_category",
"query_id": 68452
},
{
"query": "I'm a movie buff and I'm interested in collecting quotes from famous actors. Can you give me quotes from Al Pacino, quotes from the movie 'The Wizard of Oz', and quotes from movies released in 1939? It would be great if you could also provide a random quote.",
"relevant APIs": [
[
"Movie and TV shows Quotes",
"GET quotes by actor"
],
[
"Movie and TV shows Quotes",
"GET quote by movie or TV show name"
],
[
"Movie and TV shows Quotes",
"GET quote by Year"
],
[
"Movie and TV shows Quotes",
"GET a random quote"
]
],
"type": "G1_category",
"query_id": 26649
},
{
"query": "My company wants to ensure the validity of the email '[email protected]'. Can you please check if it exists and validate its format? Provide the status, message, reason, domain, provider, and whether it's a free email.",
"relevant APIs": [
[
"Email Checkup",
"/email/exist"
],
[
"Email Checkup",
"/email/format"
]
],
"type": "G1_category",
"query_id": 54626
},
{
"query": "Can you retrieve the contact details of the 'Gondrand' customs agency in New Caledonia? I'm particularly interested in their postal code, email, name, and phone number. Also, please provide a list of all available transitaires.",
"relevant APIs": [
[
"Transitaires",
"Transitaires"
],
[
"Transitaires",
"Transitaires"
]
],
"type": "G1_category",
"query_id": 10
},
{
"query": "Fetch the enum array of all units for the length measurement. Additionally, convert 1200 meters to kilometers and provide a detailed answer for the conversion.",
"relevant APIs": [
[
"Measurement Unit Converter",
"Measure units"
],
[
"Measurement Unit Converter",
"Convert from one unit to another"
]
],
"type": "G1_category",
"query_id": 12739
},
{
"query": "My company is conducting a study on fuel prices in Turkey. We need the latest fuel prices and their types. Can you fetch me this information? Additionally, we need the current exchange rates for popular currencies. Can you provide me with the current exchange rates?",
"relevant APIs": [
[
"KolektifAPI",
"Akaryakıt"
],
[
"KolektifAPI",
"Döviz"
]
],
"type": "G1_category",
"query_id": 38121
},
{
"query": "I am planning a road trip and I need to know the current gas prices in different cities. Can you provide the average gas prices for Istanbul, Ankara, and Izmir? Additionally, I would like to check the latest news about gas prices to see if there are any expected changes soon.",
"relevant APIs": [
[
"KolektifAPI",
"Akaryakıt"
],
[
"KolektifAPI",
"Haber"
]
],
"type": "G1_category",
"query_id": 54858
},
{
"query": "I'm planning a surprise gift for my tech-savvy friend, and I want to know the manufacturer of their device. Can you help me find the manufacturer's details using the MAC address 14-AB-C5-D5-DA-F9?",
"relevant APIs": [
[
"MAC Address to Manufacturer",
"maclookup"
]
],
"type": "G1_category",
"query_id": 87659
},
{
"query": "I want to know which streaming services offer movies and TV shows in the United States. Can you provide me with a list of services along with the details of the available shows and their ratings? Also, filter the results based on genre and language.",
"relevant APIs": [
[
"Streaming Availability",
"Search Ultra"
],
[
"Streaming Availability",
"Search Basic (FREE)"
]
],
"type": "G1_category",
"query_id": 43295
},
{
"query": "I want to explore movies from a specific genre. Can you provide me with a list of movies in the 'Action' genre? I would also like to see the Rotten Tomatoes rating for each movie.",
"relevant APIs": [
[
"List Movies",
"List Movies"
],
[
"List Movies",
"Genre"
],
[
"List Movies",
"With RT Ratings"
]
],
"type": "G1_category",
"query_id": 26722
},
{
"query": "I'm writing an article about the importance of alt text for pet images. Can you give me access to pet images with alt text in English, Spanish, Portuguese, and German for reference?",
"relevant APIs": [
[
"Alt Bichinhos",
"Get All Languages"
],
[
"Alt Bichinhos",
"Get English Alt Text."
],
[
"Alt Bichinhos",
"Get Spanish Alt Text"
],
[
"Alt Bichinhos",
"Get Portuguese Alt Text."
],
[
"Alt Bichinhos",
"Get German Alt Text."
]
],
"type": "G1_category",
"query_id": 77249
},
{
"query": "My friend is having trouble logging into their account. Can you help me with the API call to login the user? The username is 'emma90' and the password is 'password123'. Additionally, I would like to retrieve the inventory status of the store and get the order details by order ID '54321'.",
"relevant APIs": [
[
"tes",
"loginUser"
],
[
"tes",
"getInventory"
],
[
"tes",
"getOrderById"
]
],
"type": "G1_category",
"query_id": 59884
},
{
"query": "I'm writing an article on SEO and I need keyword data. Fetch the search volume, CPC, and competition score for the keyword 'backlinks'. Also, provide the global results for the keyword 'SEO tools'.",
"relevant APIs": [
[
"SEO Keyword Research",
"Keyword Research API"
],
[
"SEO Keyword Research",
"Global Result (single)"
]
],
"type": "G1_category",
"query_id": 4295
},
{
"query": "As a music enthusiast, I want to explore a playlist. Can you give me the track list for the playlist with the ID 37i9dQZF1DX0XUsuxWHRQd? I'm interested in the title, artists, cover, album, and release date for each track. Additionally, provide the metadata for the playlist.",
"relevant APIs": [
[
"Spotify Downloader",
"Track List - Playlist"
],
[
"Spotify Downloader",
"Metadata - Playlist"
],
[
"Spotify Downloader",
"Metadata - Track"
]
],
"type": "G1_category",
"query_id": 46689
},
{
"query": "I want to surprise my friend with some famous quotes. Could you give me 3 random quotes from the 'friendship' category? Additionally, I would like to know the categories available for famous quotes.",
"relevant APIs": [
[
"Famous Quotes",
"Get Random Quotes"
],
[
"Famous Quotes",
"List Categories"
]
],
"type": "G1_category",
"query_id": 29669
},
{
"query": "I want to discover new movies in the genre of science fiction. Give me a list of science fiction movies and their details. Also, search for a movie with the name 'Kong' and provide the detailed response.",
"relevant APIs": [
[
"Advanced Movie Search",
"Genre List"
],
[
"Advanced Movie Search",
"Search by Genre"
],
[
"Advanced Movie Search",
"Search by Name"
],
[
"Advanced Movie Search",
"Get Detailed Response"
]
],
"type": "G1_category",
"query_id": 68435
},
{
"query": "I'm writing an article about the latest movie releases. Can you provide me with the IMDb ratings, genres, and release years of the top-rated movies from the past year? Additionally, it would be helpful to know the streaming platforms where these movies are available.",
"relevant APIs": [
[
"OTT details",
"Advanced Search"
],
[
"OTT details",
"OTT Providers"
]
],
"type": "G1_category",
"query_id": 77089
},
{
"query": "I am a movie enthusiast and I want to explore different genres. Can you suggest a genre by providing a list of available genres using the Genre List API? Once I choose a genre, I would like to discover movies within that genre using the Search by Genre API. It would be helpful if the results include the movie title, release date, and overview.",
"relevant APIs": [
[
"Advanced Movie Search",
"Genre List"
],
[
"Advanced Movie Search",
"Search by Genre"
]
],
"type": "G1_category",
"query_id": 1185
},
{
"query": "I'm planning to buy some products from your catalog. Can you give me a list of all the available categories and the products in each category?",
"relevant APIs": [
[
"👋 Onboarding Project_v3",
"Get Categories"
],
[
"👋 Onboarding Project_v3",
"Get Products in Category"
]
],
"type": "G1_category",
"query_id": 4152
},
{
"query": "I'm curious to know the Islamic date for Christmas Day, December 25, 2022. Could you convert this date to the Islamic calendar using the Convert to Islamic API? Additionally, please check if this date falls between a week ago and yesterday using the Between Checker API.",
"relevant APIs": [
[
"DateClock",
"Convert to Islamic / (Hijri) (Hijriah)"
],
[