-
Notifications
You must be signed in to change notification settings - Fork 0
/
G3_query_100.json
4222 lines (4222 loc) · 151 KB
/
G3_query_100.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": "I'm a financial analyst and I need to gather comprehensive data for my research. Can you fetch the list of all countries available in the World Bank | GDP API? Additionally, provide me with the IPO calendar using the Twelve Data API to analyze the market trends.",
"query_id": 30,
"api_list": [
{
"category_name": "Data",
"tool_name": "World Bank | GDP",
"api_name": "List of countries with income level"
},
{
"category_name": "Data",
"tool_name": "World Bank | GDP",
"api_name": "List all countries"
},
{
"category_name": "Finance",
"tool_name": "BB Finance",
"api_name": "market/auto-complete"
},
{
"category_name": "Finance",
"tool_name": "BB Finance",
"api_name": "news/list-by-region"
},
{
"category_name": "Finance",
"tool_name": "BB Finance",
"api_name": "market/get-chart"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "MA"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "EXP"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "IPO Calendar"
}
]
},
{
"query": "My company is organizing a financial conference and we need real-time trading data for various markets. Can you provide us with the 24 hours trading data? Additionally, we'd like to know the strategy and market returns for the ETFs and funds we are interested in.",
"query_id": 60,
"api_list": [
{
"category_name": "Financial",
"tool_name": "QuantaEx Market Data",
"api_name": "24 Hours Tickers"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "{type}/get-strategy"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "market/v2/get-returns"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "{type}/parent/get-medalist-rating"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "PPO"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "KAMA"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "TYPPRICE"
}
]
},
{
"query": "My company is planning to invest in the stock market and we need some insights before making a decision. Can you fetch the risk-return analysis for ETFs and funds? Additionally, provide us with the 24-hour trading data for various tickers.",
"query_id": 66,
"api_list": [
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "{type}/risk/get-risk-return-analysis"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "{type}/analysis/get-archived"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "stock/v2/get-analysis-report"
},
{
"category_name": "Financial",
"tool_name": "QuantaEx Market Data",
"api_name": "24 Hours Tickers"
},
{
"category_name": "Finance",
"tool_name": "Stock and Options Trading Data Provider",
"api_name": "Straddle"
},
{
"category_name": "Finance",
"tool_name": "Stock and Options Trading Data Provider",
"api_name": "Options"
}
]
},
{
"query": "I'm organizing a company event and I need to buy some products. Can you fetch the details of a specific product with ID 4000886597329? Additionally, provide me with the available shipping countries for the products.",
"query_id": 369,
"api_list": [
{
"category_name": "Commerce",
"tool_name": "AliExpress unofficial",
"api_name": "/product/{id}"
},
{
"category_name": "Commerce",
"tool_name": "AliExpress unofficial",
"api_name": "/categories/{id}"
},
{
"category_name": "Commerce",
"tool_name": "AliExpress unofficial",
"api_name": "/shipping/{id}"
},
{
"category_name": "eCommerce",
"tool_name": "Magic AliExpress",
"api_name": "/api/shipping/{productID}"
},
{
"category_name": "eCommerce",
"tool_name": "Magic AliExpress",
"api_name": "/api/countriesAvailableToShipping"
},
{
"category_name": "eCommerce",
"tool_name": "Magic AliExpress",
"api_name": "/api/bestSales/products"
}
]
},
{
"query": "I'm planning a summer party and I want to serve some refreshing cocktails. Can you provide me with a list of summer-themed cocktails along with their detailed recipes and images? Also, suggest some breweries in my area where I can get the ingredients for these cocktails.",
"query_id": 496,
"api_list": [
{
"category_name": "Food",
"tool_name": "The Cocktail DB",
"api_name": "Detailed Cocktail Recipe by ID"
},
{
"category_name": "Food",
"tool_name": "The Cocktail DB",
"api_name": "List of Cocktails"
},
{
"category_name": "Data",
"tool_name": "Open Brewery DB",
"api_name": "Breweries"
},
{
"category_name": "Data",
"tool_name": "Open Brewery DB",
"api_name": "Search"
},
{
"category_name": "Data",
"tool_name": "Open Brewery DB",
"api_name": "Autocomplete"
},
{
"category_name": "Food",
"tool_name": "Edamam Nutrition Analysis",
"api_name": "/api/nutrition-data"
}
]
},
{
"query": "I'm a travel blogger and I want to write an article about the best time to visit a popular tourist destination. Can you provide me with the hourly weather forecast for the next 3 days at the destination? Additionally, I would like to check if there are any severe weather alerts in that area.",
"query_id": 525,
"api_list": [
{
"category_name": "Data",
"tool_name": "Weather",
"api_name": "1 Hour / Minutely Forecast (Nowcast)"
},
{
"category_name": "Data",
"tool_name": "Weather",
"api_name": "120 Hour Forecast"
},
{
"category_name": "Data",
"tool_name": "Weather",
"api_name": "Severe Weather Alerts"
},
{
"category_name": "Weather",
"tool_name": "Visual Crossing Weather",
"api_name": "Weather forecast data"
},
{
"category_name": "Weather",
"tool_name": "Visual Crossing Weather",
"api_name": "Historical weather record"
},
{
"category_name": "Data",
"tool_name": "Weather",
"api_name": "1 Hour / Minutely Forecast (Nowcast)"
},
{
"category_name": "Data",
"tool_name": "Weather",
"api_name": "120 Hour Forecast"
},
{
"category_name": "Data",
"tool_name": "Weather",
"api_name": "Severe Weather Alerts"
}
]
},
{
"query": "I'm writing a book about the power of Bible verses in daily life. Can you fetch a verse from the book of Isaiah, chapter 40, verse 31? Furthermore, I'm interested in exploring educational topics related to religion. Can you provide me with a list of available topics from the Uncovered Treasure API?",
"query_id": 569,
"api_list": [
{
"category_name": "Data",
"tool_name": "Holy Bible",
"api_name": "GetVerses"
},
{
"category_name": "Data",
"tool_name": "Holy Bible",
"api_name": "GetVerseOfaChapter"
},
{
"category_name": "Data",
"tool_name": "Holy Bible",
"api_name": "GetChapter"
},
{
"category_name": "Education",
"tool_name": "Uncovered Treasure",
"api_name": "/topic/{topic}"
},
{
"category_name": "Education",
"tool_name": "Uncovered Treasure",
"api_name": "/verse/{verse}"
},
{
"category_name": "Education",
"tool_name": "Uncovered Treasure",
"api_name": "/topics"
}
]
},
{
"query": "I'm planning a party for my friends and I want to include some fun jokes to entertain them. Can you provide me with ten jokes from the Jokes by API-Ninjas? Additionally, I would like to search for Chuck Norris jokes that mention cats. Can you find any for me?",
"query_id": 587,
"api_list": [
{
"category_name": "Entertainment",
"tool_name": "Jokes by API-Ninjas",
"api_name": "/v1/jokes"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/search"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/random"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/categories"
}
]
},
{
"query": "I'm preparing a funny presentation for my class and I need some jokes to lighten the mood. Fetch a random joke from the Jokes by API-Ninjas API, a Chuck Norris joke from the Chuck Norris API, and a dad joke from the DaddyJokes API.",
"query_id": 605,
"api_list": [
{
"category_name": "Entertainment",
"tool_name": "World of Jokes",
"api_name": "Get Random Joke"
},
{
"category_name": "Entertainment",
"tool_name": "World of Jokes",
"api_name": "Get Joke of the Day By Category"
},
{
"category_name": "Entertainment",
"tool_name": "World of Jokes",
"api_name": "Get Random Joke By Category"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/search"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/random"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/categories"
},
{
"category_name": "Entertainment",
"tool_name": "Jokes by API-Ninjas",
"api_name": "/v1/jokes"
},
{
"category_name": "Entertainment",
"tool_name": "DaddyJokes",
"api_name": "Random"
}
]
},
{
"query": "I'm planning a surprise party for my best friend's birthday. Can you fetch a random manatee joke and a programming meme to add some fun to the party? Also, find a nearby restaurant that can accommodate a group of 20 people and make a reservation for the party.",
"query_id": 606,
"api_list": [
{
"category_name": "Science",
"tool_name": "manatee jokes",
"api_name": "get by id"
},
{
"category_name": "Science",
"tool_name": "manatee jokes",
"api_name": "find all"
},
{
"category_name": "Science",
"tool_name": "manatee jokes",
"api_name": "random"
},
{
"category_name": "Entertainment",
"tool_name": "Programming Memes Images",
"api_name": "v1/memes"
},
{
"category_name": "Entertainment",
"tool_name": "World of Jokes",
"api_name": "Get Random Joke By Category"
},
{
"category_name": "Entertainment",
"tool_name": "World of Jokes",
"api_name": "Get Random Joke"
},
{
"category_name": "Entertainment",
"tool_name": "World of Jokes",
"api_name": "Get Joke of the Day"
}
]
},
{
"query": "I am a sports blogger and I'm always looking for engaging content for my readers. Can you provide me with a list of upcoming sports events and their bookmaker odds? Additionally, I would like to search for news articles about remarkable sports achievements to share with my audience.",
"query_id": 710,
"api_list": [
{
"category_name": "Sports",
"tool_name": "Live Sports Odds",
"api_name": "/v4/sports/{sport}/odds"
},
{
"category_name": "Sports",
"tool_name": "Live Sports Odds",
"api_name": "/v4/sports/{sport}/scores"
},
{
"category_name": "Sports",
"tool_name": "Live Sports Odds",
"api_name": "/v4/sports"
},
{
"category_name": "Data",
"tool_name": "GeoDB Cities",
"api_name": "Place Date-Time"
},
{
"category_name": "Data",
"tool_name": "GeoDB Cities",
"api_name": "City Located In"
},
{
"category_name": "Data",
"tool_name": "GeoDB Cities",
"api_name": "Time-Zone"
},
{
"category_name": "Data",
"tool_name": "Web Search",
"api_name": "imageSearch"
},
{
"category_name": "Data",
"tool_name": "Web Search",
"api_name": "spellCheck"
},
{
"category_name": "Data",
"tool_name": "Web Search",
"api_name": "newsSearch"
}
]
},
{
"query": "I'm planning a trip to Paris with my family and we need some information to make the most of our visit. Can you provide me with news articles about popular tourist attractions in Paris? Additionally, I would like to see relevant images of these attractions to get a better idea of what to expect. Finally, please recommend some good hotels in Paris that are near these attractions.",
"query_id": 809,
"api_list": [
{
"category_name": "Data",
"tool_name": "Web Search",
"api_name": "spellCheck"
},
{
"category_name": "Data",
"tool_name": "Web Search",
"api_name": "newsSearch"
},
{
"category_name": "Data",
"tool_name": "Web Search",
"api_name": "imageSearch"
},
{
"category_name": "eCommerce",
"tool_name": "Real-Time Product Search",
"api_name": "Product Reviews"
},
{
"category_name": "eCommerce",
"tool_name": "Real-Time Product Search",
"api_name": "Product Offers"
},
{
"category_name": "eCommerce",
"tool_name": "Real-Time Product Search",
"api_name": "Search"
}
]
},
{
"query": "I'm planning a surprise visit to my grandparents and I want to make them smile. Fetch a random manatee joke to share with my grandparents. Additionally, provide a funny joke from the Jokes by API-Ninjas endpoint. Finally, suggest some nostalgic activities or games that we can enjoy together.",
"query_id": 828,
"api_list": [
{
"category_name": "Entertainment",
"tool_name": "Jokes by API-Ninjas",
"api_name": "/v1/jokes"
},
{
"category_name": "Science",
"tool_name": "manatee jokes",
"api_name": "get by id"
},
{
"category_name": "Science",
"tool_name": "manatee jokes",
"api_name": "find all"
},
{
"category_name": "Science",
"tool_name": "manatee jokes",
"api_name": "random"
}
]
},
{
"query": "My company is organizing an outdoor event in San Francisco next week. Could you fetch the current weather conditions and any active alerts for the area? Also, provide a radiation forecast to help us plan the event better.",
"query_id": 903,
"api_list": [
{
"category_name": "Weather",
"tool_name": "National Weather Service",
"api_name": "/alerts/active/count"
},
{
"category_name": "Weather",
"tool_name": "National Weather Service",
"api_name": "/stations/{stationId}"
},
{
"category_name": "Weather",
"tool_name": "National Weather Service",
"api_name": "/alerts/active/area/{area}"
},
{
"category_name": "Data",
"tool_name": "Solcast",
"api_name": "Simple PV Power Forecast"
},
{
"category_name": "Data",
"tool_name": "Solcast",
"api_name": "Simple Radiation Forecast"
}
]
},
{
"query": "I'm planning a surprise party for my best friend's birthday and I need some ideas. Can you search for party planning websites that offer unique theme ideas and provide me with the options? Additionally, fetch the list of available venues for the party to finalize the location. Also, search for movies and series related to surprise parties to get inspiration for the event.",
"query_id": 963,
"api_list": [
{
"category_name": "Finance",
"tool_name": "Alpaca Trading",
"api_name": "Get the calendar"
},
{
"category_name": "Finance",
"tool_name": "Alpaca Trading",
"api_name": "Get a list of orders"
},
{
"category_name": "Finance",
"tool_name": "Alpaca Trading",
"api_name": "Get assets"
},
{
"category_name": "Movies",
"tool_name": "Streaming Availability",
"api_name": "Search Basic (FREE)"
},
{
"category_name": "Movies",
"tool_name": "Streaming Availability",
"api_name": "Search Ultra"
},
{
"category_name": "Movies",
"tool_name": "Streaming Availability",
"api_name": "Search By Title (FREE)"
}
]
},
{
"query": "I'm planning a family vacation and I need to get the vaccination guidelines for traveling. Can you provide me with the necessary vaccinations my family should take, including any specific requirements for each country we plan to visit? Additionally, I would like to gather information on healthcare mailing lists to reach out to medical professionals and clinics in the countries we'll be visiting.",
"query_id": 989,
"api_list": [
{
"category_name": "Medical",
"tool_name": "GetGuidelines",
"api_name": "vac"
},
{
"category_name": "Medical",
"tool_name": "GetGuidelines",
"api_name": "all"
},
{
"category_name": "Business",
"tool_name": "Healthcaremailing",
"api_name": "Healthcare mailing"
},
{
"category_name": "Business",
"tool_name": "Lake B2B",
"api_name": "Email Marketing"
}
]
},
{
"query": "I'm a music enthusiast and I want to explore different genres and artists. Can you help me search for tracks and artists using the Deezer API? Additionally, I would like to search for songs and artists using the Shazam API.",
"query_id": 3345,
"api_list": [
{
"category_name": "Entertainment",
"tool_name": "Chart Lyrics",
"api_name": "/apiv1.asmx/SearchLyricDirect?artist=michael%20jackson&song=bad"
},
{
"category_name": "Entertainment",
"tool_name": "Deezer",
"api_name": "Track"
},
{
"category_name": "Entertainment",
"tool_name": "Deezer",
"api_name": "Album"
},
{
"category_name": "Entertainment",
"tool_name": "Deezer",
"api_name": "* Search"
},
{
"category_name": "Music",
"tool_name": "Shazam",
"api_name": "songs/get-related-artist"
},
{
"category_name": "Music",
"tool_name": "Shazam",
"api_name": "search"
},
{
"category_name": "Music",
"tool_name": "Shazam",
"api_name": "charts/track"
}
]
},
{
"query": "I am planning a trip to Europe and want to convert 1000 USD to Euros. Can you provide me with the current exchange rate and historical exchange rates for the past week? Additionally, I would like to know the available quotes in the Currency Exchange API.",
"query_id": 3393,
"api_list": [
{
"category_name": "Finance",
"tool_name": "Coinmill Currency",
"api_name": "Coinmill"
},
{
"category_name": "Finance",
"tool_name": "Free Currency Converter by Hajana One",
"api_name": "/currency-api.php"
},
{
"category_name": "Data",
"tool_name": "Currency Exchange",
"api_name": "listquotes"
},
{
"category_name": "Data",
"tool_name": "Currency Exchange",
"api_name": "exchange"
},
{
"category_name": "Finance",
"tool_name": "Currency Conversion and Exchange Rates",
"api_name": "Convert"
},
{
"category_name": "Finance",
"tool_name": "Currency Conversion and Exchange Rates",
"api_name": "Recent Exchange Rates"
},
{
"category_name": "Finance",
"tool_name": "Currency Conversion and Exchange Rates",
"api_name": "Historical Exchange Rates"
}
]
},
{
"query": "I'm planning a romantic dinner for my partner and I want to create a romantic atmosphere with famous quotes about love and passion. Can you provide me with random quotes from those categories? Additionally, I need some messages related to romance and affection to include in a love letter. Please fetch those for me.",
"query_id": 3516,
"api_list": [
{
"category_name": "Data",
"tool_name": "Messages",
"api_name": "getMsgs"
},
{
"category_name": "Tools",
"tool_name": "Famous Quotes",
"api_name": "List Categories"
},
{
"category_name": "Tools",
"tool_name": "Famous Quotes",
"api_name": "Get Random Quotes"
}
]
},
{
"query": "I'm organizing a team-building event for my company and I need some inspirational quotes to motivate the employees. Fetch me some random quotes about success and teamwork. Additionally, provide me with step-by-step instructions on how to organize a successful team-building activity. And don't forget to fetch some images of successful teams for presentation slides.",
"query_id": 3518,
"api_list": [
{
"category_name": "Tools",
"tool_name": "Famous Quotes",
"api_name": "Get Random Quotes"
},
{
"category_name": "Tools",
"tool_name": "Famous Quotes",
"api_name": "List Categories"
},
{
"category_name": "Data",
"tool_name": "WikiHow",
"api_name": "Steps"
},
{
"category_name": "Data",
"tool_name": "WikiHow",
"api_name": "Images"
},
{
"category_name": "Data",
"tool_name": "Messages",
"api_name": "getMsgs"
}
]
},
{
"query": "I'm organizing a Hearthstone tournament and I need to create a unique experience for the participants. Can you fetch all the available card backs and provide me with their images? It would also be great if you could find any sponsorships related to Diablo 4 that we can incorporate into our event.",
"query_id": 3545,
"api_list": [
{
"category_name": "Entertainment",
"tool_name": "Hearthstone",
"api_name": "Card Backs"
},
{
"category_name": "Entertainment",
"tool_name": "Hearthstone",
"api_name": "Cards by Type"
},
{
"category_name": "Entertainment",
"tool_name": "Hearthstone",
"api_name": "Cards by Quality"
},
{
"category_name": "Data",
"tool_name": "Diablo4 Smartable",
"api_name": "GetPeople"
},
{
"category_name": "Data",
"tool_name": "Diablo4 Smartable",
"api_name": "GetSponsorships"
},
{
"category_name": "Data",
"tool_name": "Diablo4 Smartable",
"api_name": "GetGamesByTopic"
}
]
},
{
"query": "I'm a stock trader and I want to compare the trading data for different stocks. Can you provide me with the 24 hours tickers for Apple, Microsoft, and Amazon? Additionally, I'm interested in the lowest value over the past hour for each stock. Please give me the MIN values. Also, I want to compare the opening and closing prices of each stock. Please calculate the differences for me using the SUB function.",
"query_id": 3675,
"api_list": [
{
"category_name": "Financial",
"tool_name": "QuantaEx Market Data",
"api_name": "24 Hours Tickers"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "MIN"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "MINMAX"
},
{
"category_name": "Finance",
"tool_name": "Twelve Data",
"api_name": "SUB"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "{type}/parent/get-investment-flows"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "{type}/people/get-summary"
},
{
"category_name": "Finance",
"tool_name": "Morning Star",
"api_name": "{type}/price/get-cost-illustration"
}
]
},
{
"query": "I want to plan a vacation with my family in Italy. Can you provide me with a list of non-working days between August 1st and August 15th in Italy? Additionally, I need to evaluate an expression to calculate the total cost of the vacation. The expression is '($2000 * 4) + ($500 * 2)'.",
"query_id": 3724,
"api_list": [
{
"category_name": "Other",
"tool_name": "Evaluate expression",
"api_name": "Evaluate expression"
},
{
"category_name": "Events",
"tool_name": "Working days",
"api_name": "/1.3/list_non_working_days"
},
{
"category_name": "Events",
"tool_name": "Working days",
"api_name": "/1.3/get_info_day"
},
{
"category_name": "Events",
"tool_name": "Working days",
"api_name": "/1.3/analyse"
}
]
},
{
"query": "My family and I are planning a music-themed game night. Can you fetch the game level for level number 5? Also, provide us with a math fact about the number 1729 and a trivia fact about the number 42.",
"query_id": 3752,
"api_list": [
{
"category_name": "Gaming",
"tool_name": "Trivia by API-Ninjas",
"api_name": "/v1/trivia"
},
{
"category_name": "Media",
"tool_name": "Music Trivia",
"api_name": "/getgamelevel"
},
{
"category_name": "Education",
"tool_name": "Numbers",
"api_name": "Get math fact"
},
{
"category_name": "Education",
"tool_name": "Numbers",
"api_name": "Get trivia fact"
},
{
"category_name": "Education",
"tool_name": "Numbers",
"api_name": "Get year fact"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/random"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/search"
},
{
"category_name": "Social",
"tool_name": "Chuck Norris",
"api_name": "/jokes/categories"
}
]
},
{
"query": "I'm a music producer and I want to explore the top songs of all time for inspiration. Can you provide me with the Hot 100 Songs chart information from the Billboard-API? Additionally, fetch the basic information and download link for a popular song from Soundcloud.",
"query_id": 3895,
"api_list": [
{
"category_name": "Social",
"tool_name": "Soundcloud",
"api_name": "/user/info"
},
{
"category_name": "Social",
"tool_name": "Soundcloud",
"api_name": "/song/info"
},
{
"category_name": "Social",
"tool_name": "Soundcloud",
"api_name": "/song/download"
},
{
"category_name": "Music",
"tool_name": "Billboard-API",
"api_name": "Hot 100 Women Artists"
},
{
"category_name": "Music",
"tool_name": "Billboard-API",
"api_name": "Hot 100 Songs (Greatest of All Time)"
},
{
"category_name": "Music",
"tool_name": "Billboard-API",
"api_name": "Ireland Songs"
}
]
},
{
"query": "I'm a graphic designer working on a project for a client who needs images of famous landmarks. Can you fetch me some trending images of iconic landmarks around the world? Additionally, can you provide me with the list of supported countries for web search?",
"query_id": 3949,
"api_list": [
{
"category_name": "Media",
"tool_name": "Bing Image Search",
"api_name": "Image Search"
},
{
"category_name": "Media",
"tool_name": "Bing Image Search",
"api_name": "Trending"
},
{
"category_name": "Search",
"tool_name": "Bing Web Search",
"api_name": "Supported Languages"
},
{
"category_name": "Search",
"tool_name": "Bing Web Search",
"api_name": "Supported Countries"
}
]
},
{
"query": "I'm planning a team-building activity for my colleagues. Find me some posts on Reddit about successful team-building exercises and provide me with the top comments to understand the key factors. Also, suggest some popular posts and their details that I can share with my team to inspire them.",
"query_id": 4048,
"api_list": [
{
"category_name": "Data",
"tool_name": "Socialgrep",
"api_name": "Post search"
},
{
"category_name": "Data",
"tool_name": "Socialgrep",
"api_name": "Comment search"
},
{
"category_name": "Social",
"tool_name": "Reddit",
"api_name": "Posts By Subreddit"
},
{
"category_name": "Social",
"tool_name": "Reddit",
"api_name": "Top Comments By Username"
},
{
"category_name": "Social",
"tool_name": "Reddit",
"api_name": "Post Details"
}
]
},
{
"query": "I'm organizing a social event and I need some entertainment ideas. Fetch the top quality memes from Reddit's meme subreddit and also provide me with the post details of a specific post with ID 't3_t19inj'. Additionally, check if the usernames 'Soundcloud', 'Dribbble', and 'GitHub' are available.",
"query_id": 4083,
"api_list": [
{
"category_name": "Social",
"tool_name": "Reddit",
"api_name": "Posts By Username"
},
{
"category_name": "Social",
"tool_name": "Reddit",
"api_name": "Popular Posts"
},
{
"category_name": "Social",
"tool_name": "Reddit",
"api_name": "Post Details"
},
{
"category_name": "Social",
"tool_name": "Check Username",
"api_name": "Soundcloud"
},
{
"category_name": "Social",
"tool_name": "Check Username",