-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1179 lines (979 loc) ยท 46.7 KB
/
Copy pathindex.html
File metadata and controls
1179 lines (979 loc) ยท 46.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<script id="aclib" type="text/javascript" src="//acscdn.com/script/aclib.js"></script>
<meta charset="UTF-8">
<!-- Skippership Tracking Script - Start -->
<script defer src="https://tracker.skippership.com/tracker/9DkULUgwjl2uibVt"></script>
<!-- Skippership Tracking Script - End -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1253708206161494"
crossorigin="anonymous"></script>
<meta name="google-adsense-account" content="ca-pub-1253708206161494">
<meta name="robots" content="index, follow">
<meta name="language" content="en">
<meta name="author" content="AquaScript Team">
<meta name="description" content="Free JSON APIs & developer tools: Books, Movies, Quotes, Jokes, Users, Recipes, Songs + generators (Invoice, Business Card, QR).">
<meta name="keywords" content="Free JSON API, Developer Tools, AquaScript, Mock Data API, Books API, Movies API, Quotes API, Jokes API, Recipes API, Songs API, Web Development, Open Source APIs, Frontend Tools, Invoice Generator, QR Code Generator, CSS Generator, Business Card Generator">
<link rel="canonical" href="https://www.aquascript.xyz/">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="AquaScript โ Free JSON APIs for Developers" />
<meta property="og:description" content="Access high-quality, reliable JSON APIs for books, movies, quotes, jokes, and more. Easy to integrate, free to use, and constantly updated." />
<meta property="og:image" content="/assets/Purple%20and%20Pink%20Gradient%20Simple%20Neon%20Futuristic%20Technology%20Desktop%20Wallpaper.png" />
<meta property="og:url" content="https://aquascript.xyz" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="AquaScript โ Free JSON APIs for Developers" />
<meta name="twitter:description" content="Access high-quality, reliable JSON APIs for books, movies, quotes, jokes, and more. Easy to integrate, free to use, and constantly updated." />
<meta name="twitter:image" content="/assets/Purple%20and%20Pink%20Gradient%20Simple%20Neon%20Futuristic%20Technology%20Desktop%20Wallpaper.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="AbrQhtIwYhROYBuCqhr4_3oEzGv1n52iGqiwQNXyAWU" />
<meta name="msvalidate.01" content="5FE17DA55696B26343A4F70F1EF0D314" />
<link rel="icon" href="assets/Aqua_icon.png" type="image/x-icon">
<title>AquaScript | Free JSON APIs for Developers</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "AquaScript",
"url": "https://aquascript.xyz/",
"description": "Free JSON APIs and developer tools for rapid prototyping: Books, Movies, Quotes, Jokes, Users, Recipes, Songs + generators (Invoice, Business Card, QR, CSS). No auth. Fast, reliable, and open source.",
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://aquascript.xyz/docs.html#{{search_term_string}}"
},
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "AquaScript",
"url": "https://aquascript.xyz/",
"logo": "https://aquascript.xyz/assets/background-removed.png",
"sameAs": [
"https://github.com/wecoded-dev/Aquascript",
"https://dev.to/aquascript",
"https://www.youtube.com/@aquascript-apis"
]
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script src="https://kit.fontawesome.com/69b7050fd6.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<!-- MS Clarity -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "r61ug1ab6x");
</script>
</head>
<body>
</div>
<!-------------2nd navbar------------->
<nav class="navbar navbar-expand-lg bg-info bg-opacity-26 backdrop-blur fixed-top shadow-lg">
<div class="container">
<a class="navbar-brand" href="#">
<img src="assets/background-removed.png" alt="Logo">
</a>
<button class="navbar-toggler shadow-none border-0" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="sidebar offcanvas offcanvas-start" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header text-white border-bottom">
<a class="navbar-brand" href="#">
<img src="assets/background-removed.png" alt="Logo">
</a>
<button type="button" class="btn-close btn-close-white shadow-none" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li class="nav-item mx-1">
<a class="nav-link active" aria-current="page" href="index">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="docs">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://wecoded-dev.github.io">Read Blogs <i class="fas fa-code"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact">Contact</a>
</li>
</ul>
<div class="dropdown">
<a class="btn btn-primary ms-1 my-1 dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Support <i class="fa-solid fa-headphones-simple fa-xl px-1"></i>
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item emil" href="https://www.youtube.com/@aquascript-apis" target="_blank"><i class="fa-brands fa-youtube fa-xl me-2"></i> YouTube</a></li>
<li>
<a class="dropdown-item emil" href="mailto:support@aquascript.xyz">
<i class="fas fa-envelope fa-xl me-2"></i> support@aquascript.xyz
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<!--------------Ending---------------->
<!-- button -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discord Community Button</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Discord button styles - self-contained and isolated */
.discord-btn-container {
position: fixed;
left: 20px;
top: 50%;
transform: translateY(-50%);
z-index: 10000;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
isolation: isolate;
}
.discord-community-btn {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
color: white;
padding: 15px 20px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
transition: all 0.3s ease;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
width: 60px;
height: 60px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.discord-community-btn:hover {
width: 220px;
transform: translateY(-2px) scale(1.05);
box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
background: linear-gradient(135deg, #5865F2 0%, #677bc4 100%);
}
.discord-community-btn:hover .btn-text {
width: auto;
opacity: 1;
margin-left: 12px;
}
.discord-community-btn:active {
transform: translateY(0) scale(1);
box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
}
.discord-icon {
font-size: 28px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
transition: all 0.3s ease;
}
.discord-community-btn:hover .discord-icon {
left: 20px;
transform: translate(0, -50%);
}
.btn-text {
width: 0;
opacity: 0;
overflow: hidden;
white-space: nowrap;
transition: all 0.4s ease;
}
/* Pulse animation */
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.7);
}
70% {
box-shadow: 0 0 0 12px rgba(88, 101, 242, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(88, 101, 242, 0);
}
}
.discord-community-btn.pulse {
animation: pulse 2s infinite;
}
/* Responsive design */
@media (max-width: 768px) {
.discord-btn-container {
left: 10px;
}
.discord-community-btn {
width: 50px;
height: 50px;
padding: 12px 16px;
}
.discord-community-btn:hover {
width: 200px;
}
.discord-icon {
font-size: 24px;
}
}
@media (max-width: 480px) {
.discord-btn-container {
bottom: 20px;
top: auto;
transform: none;
left: 50%;
transform: translateX(-50%);
}
.discord-community-btn {
width: auto;
height: auto;
padding: 12px 20px;
}
.discord-community-btn:hover {
width: auto;
transform: none;
}
.discord-icon {
position: static;
transform: none;
margin-right: 8px;
font-size: 20px;
}
.btn-text {
width: auto;
opacity: 1;
}
.discord-community-btn:hover .discord-icon {
position: static;
transform: none;
margin-right: 8px;
}
.discord-community-btn:hover .btn-text {
margin-left: 0;
}
}
</style>
</head>
<body>
<!-- Discord Community Button -->
<div class="discord-btn-container">
<a href="https://discord.gg/v5ytT8zE" target="_blank" class="discord-community-btn pulse">
<i class="fab fa-discord discord-icon"></i>
<span class="btn-text">Join Our Community</span>
</a>
</div>
<script>
// Simple script to handle the button behavior
document.addEventListener('DOMContentLoaded', function() {
const btn = document.querySelector('.discord-community-btn');
let clickCount = 0;
// Remove pulse animation after 3 clicks
if (btn) {
btn.addEventListener('click', function() {
clickCount++;
if (clickCount >= 3) {
this.classList.remove('pulse');
}
});
}
// Make button more compact on scroll
let lastScrollTop = 0;
window.addEventListener('scroll', function() {
const st = window.pageYOffset || document.documentElement.scrollTop;
if (st > lastScrollTop) {
// Scrolling down
btn.style.transform = 'scale(0.9)';
} else {
// Scrolling up
btn.style.transform = 'scale(1)';
}
lastScrollTop = st <= 0 ? 0 : st;
}, false);
});
</script>
</body>
</html>
<script style="left: 200px;">
(function() {
// Asyntai Chat Widget
var script = document.createElement('script');
script.src = 'https://asyntai.com/static/js/chat-widget.js';
script.setAttribute('data-asyntai-id', 'asyntai_4b6dfd9bf125');
document.head.appendChild(script);
})();
</script>
<!-- finish button -->
<header class="hero-section text-white">
<div class="container py-5 text-center">
<h1 class="display-3 fw-bold mb-4 animate__animated animate__fadeInDown animate__slow">
Free JSON APIs & Tools for Developers
</h1>
<p class="lead mb-5 animate__animated animate__fadeInUp animate__delay-0.8s animate__slow" style="max-width: 700px; margin: 0 auto;">
High-quality, reliable JSON data APIs & Tools for your projects.
Easy to integrate, free to use, and constantly updated.
</p>
<!-- Badge Code - Do Not Change The Code --><div class="col-xs-12 mt20" id="bg">
<div style="margin:0px auto;width:133px;background:rgb(20, 89, 208);text-align:left;display:flex;border-radius:5px">
<span style="padding:7px;display:inline-block;border-right:1px solid #746dba">
<a href="http://visitorshitcounter.com" rel="nofollow noopener" target="_blank" title="https://visitorshitcounter.com/">
<img src="https://visitorshitcounter.com/img/s-logo.svg" alt="https://visitorshitcounter.com/" style="width:100%;border:none;float:left"></a></span><span class="text" id="dupli_hit_counter" style="padding:10px 0 0 0;display:inline-block;color:rgb(255, 255, 255);width:100%;text-align:center;"></span></span><input type="hidden" id="site_val" value="https://visitorshitcounter.com/counterDisplay?code=75725b73ab659f8a959800e93d1905ce&style=0017&pad=5&type=page&initCount=1"></div></div><script src="https://visitorshitcounter.com/js/badgess.js?v=1748777101"></script><!-- Badge Code End Here -->
</center><br> <br>
<center>
<a href="https://www.producthunt.com/posts/aquascript?embed=true&utm_source=badge-featured&utm_medium=badge&utm_source=badge-aquascript" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=967715&theme=light&t=1747740257803" alt="AquaScript - Free json apis for developers | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a><br> <a href="https://fazier.com/launches/aquascript.xyz" target="_blank"><img src="https://fazier.com/api/v1//public/badges/launch_badges.svg?badge_type=featured&theme=light" width=250 alt="Fazier badge" /></a>
</center>
<!-- end script -->
<div class="row mt-5">
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-robot"></i>
</div>
<h3 style="font-size: 20px;">AsyntAI Chatbot</h3>
<p>Get The AI Chatbot and Integrate In Your Website For Business and Customer Service. </p>
<a href="https://asyntai.com" class="btn btn-api">Integrate Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-book"></i>
</div>
<h3>Books API</h3>
<p>Comprehensive book data including titles, authors, genres, and more.</p>
<a href="book" class="btn btn-api">Explore</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-book-open"></i>
</div>
<h3>Books+ API</h3>
<p>Discover an enhanced collection of books with rich metadata.</p>
<a href="booksV2" class="btn btn-api">Explore More</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-film"></i>
</div>
<h3>Movies API</h3>
<p>Detailed movie information, ratings, cast, and streaming availability.</p>
<a href="moviedata" class="btn btn-api">Explore</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-clapperboard"></i>
</div>
<h3>Movies+ API</h3>
<p>Discover movies with rich details, tags, and images.</p>
<a href="moviesdataV2" class="btn btn-api">Dive In</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-quote-right"></i>
</div>
<h3>Quotes API</h3>
<p>Thousands of inspirational, funny, and motivational quotes.</p>
<a href="quotes" class="btn btn-api">Explore</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-quote-left"></i>
</div>
<h3>Quotes+ API</h3>
<p>Curated quotes to inspire and enlighten.</p>
<a href="quotesV2" class="btn btn-api">Explore Wisdom</a>
</div>
</div>
</div>
<div class="row mt-3">
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-laugh-squint"></i>
</div>
<h3>Jokes API</h3>
<p>Clean, funny jokes for all audiences. Perfect for entertainment apps.</p>
<a href="jokes" class="btn btn-api">Explore</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-users"></i>
</div>
<h3>Users API</h3>
<p>Fake user data for testing and development purposes.</p>
<a href="user" class="btn btn-api">Explore</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-laugh-beam"></i>
</div>
<h3 style="font-size: 20px;">Programming Jokes API</h3>
<p>Add fun to your code! <br> Get jokes only geeks get.</p>
<a href="progm_jokes" class="btn btn-api">Laugh Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-utensils"></i>
</div>
<h3 style="font-size: 20px;">Recipes API</h3>
<p>Discover a variety of recipes with ingredients, instructions, and nutritional info.</p>
<a href="recipes" class="btn btn-api">Cook Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-music"></i>
</div>
<h3 style="font-size: 20px;">Songs API</h3>
<p>Access a library of songs with metadata, lyrics, and artist information.</p>
<a href="songs" class="btn btn-api">Explore Track</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-file"></i>
</div>
<h3 style="font-size: 20px;">Invoice Generator</h3>
<p>Create Unlimited Invoices & export as image, PDF or HTML.</p>
<a href="invoicegen.html" class="btn btn-api">Generate Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-box"></i>
</div>
<h3 style="font-size: 20px;">CSS Shadow Generator</h3>
<p>Generate the CSS Shadow for box and copy css code</p>
<a href="css-shadow-gen.html" class="btn btn-api">Generate Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-cloud"></i>
</div>
<h3 style="font-size: 20px;">Advanced Button Generator</h3>
<p>Generate the button and Copy Code. </p>
<a href="buttongen.html" class="btn btn-api">Generate Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-pen"></i>
</div>
<h3 style="font-size: 20px;">CSS Gradients Generator</h3>
<p>Generate CSS Gradients & Copy CSS Code</p>
<a href="gradientsgen.html" class="btn btn-api">Generate Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-card"></i>
</div>
<h3 style="font-size: 20px;">Business Card Generator</h3>
<p>Generate your Unlimited Business Cards and Export as many formats</p>
<a href="bizcardgen.html" class="btn btn-api">Generate Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-qrcode"></i>
</div>
<h3 style="font-size: 20px;">QR Code Generator</h3>
<p>Create the All types of the QR Codes For text, wifi, contact, mail and vrcard</p>
<a href="qr-gen.html" class="btn btn-api">Generate Now</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-clock"></i>
</div>
<h3 style="font-size: 20px;">Productivity Time</h3>
<p>Track your time and increase productivity</p>
<a href="pro-timer.html" class="btn btn-api">Track</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-image"></i>
</div>
<h3 style="font-size: 20px;">Favicon Generator</h3>
<p>Generate unlimited favicon For your website. </p>
<a href="favicongen.html" class="btn btn-api">Create</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fas fa-pen"></i>
</div>
<h3 style="font-size: 20px;">Glassmorphism / Neumorphism Generator</h3>
<p>Generate Glassmorphism and copy CSS Code</p>
<a href="uidesign.html" class="btn btn-api">Generate</a>
</div>
</div>
<div class="col-md-4">
<div class="api-card">
<div class="api-icon">
<i class="fa-solid fa-spinner"></i>
</div>
<h3 style="font-size: 20px;">More APIs Coming Soon</h3>
<p>Stay tuned for more exciting APIs to enhance your projects.</p>
<a href="#coming-soon" class="btn btn-api disabled">Loading...</a>
</div>
</div>
</div>
</div>
</header>
<!-- testimonial get embed -->
<div id="shapo-form-602d2cf9e4"></div>
<script id="shapo-embed-js" type="text/javascript" src="https://cdn.shapo.io/js/embed.js" defer></script>
<!-- end -->
<!-- Testimonials Section -->
<section class="testimonials-section py-5 bg-light">
<div class="container">
<h2 class="text-center mb-5 quote">What Developers Say About Our API</h2>
<div id="testimonialCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"AquaScript's JSON APIs have been a game-changer for our development process. The documentation is clear, and the response times are incredibly fast."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Michael Chen</h5>
<p class="author-title">Senior Developer, TechSolutions Inc.</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"I've used many free APIs, but AquaScript stands out with its reliability and consistent updates. The Movies++ API saved us weeks of development time."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Sarah Johnson</h5>
<p class="author-title">Frontend Lead, StreamVision</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"The Books API integration was seamless. We were able to implement it in our educational app within hours, thanks to the excellent documentation."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">David Rodriguez</h5>
<p class="author-title">CTO, EduTech Startup</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"As a solo developer, having access to free, high-quality APIs like AquaScript's Quotes++ has allowed me to build professional apps without backend overhead."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Emma Wilson</h5>
<p class="author-title">Independent App Developer</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"The rate limits are generous, and we've never experienced downtime. AquaScript has become our go-to for mock data in development and testing."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/81.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">James Peterson</h5>
<p class="author-title">QA Lead, Enterprise Software Co.</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"Our students love working with AquaScript APIs in our coding bootcamp. The consistent structure across different endpoints makes them perfect for teaching API integration."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/33.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Dr. Lisa Wong</h5>
<p class="author-title">Lead Instructor, Code Academy</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"The programming jokes API brought personality to our internal tools. It's amazing how small touches like this improve developer experience."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/22.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Robert Kim</h5>
<p class="author-title">DevOps Engineer, CloudScale</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"We evaluated several free API providers before choosing AquaScript. The decision came down to data quality and their responsive support team."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/51.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Natalie Smith</h5>
<p class="author-title">Product Manager, AppVenture</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text"><span>"</span>The rich metadata in the Books++ API allowed us to create advanced search and recommendation features we couldn't have built with other free alternatives.<span>"</span></p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Thomas Baker</h5>
<p class="author-title">Backend Developer, ReadWell</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text"><span>"</span>AquaScript's APIs have the perfect balance between simplicity and functionality. We've integrated three different endpoints in our new project with zero issues.<span>"</span></p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/29.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Olivia Martinez</h5>
<p class="author-title">Full Stack Developer, DigitalNest</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text"><span>"</span>For a free service, the uptime and performance are exceptional. We're using the Users API for our staging environment and it works flawlessly.<span>"</span></p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/67.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Daniel Brown</h5>
<p class="author-title">Technical Lead, FinTech Startup</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"The consistent API design across all endpoints reduced our learning curve significantly. New team members can start integrating immediately."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/76.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Sophia Lee</h5>
<p class="author-title">Engineering Manager, DevHouse</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"We use the Quotes API to power daily inspiration in our team Slack channel. It's become a beloved ritual that boosts morale every morning."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/53.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Kevin Taylor</h5>
<p class="author-title">Director of Engineering, PeopleFirst</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"The Developers Books API helped us create a recommended reading section in our learning platform. The categorization by skill level is particularly useful."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/62.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Rachel Green</h5>
<p class="author-title">Founder, CodeLearners</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="testimonial-card mx-auto">
<div class="testimonial-content">
<p class="testimonial-text">"What impressed me most was how quickly the team added new features based on community feedback. AquaScript truly listens to its users."</p>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/38.jpg" alt="Developer" class="author-img">
<div>
<h5 class="author-name">Mark Williams</h5>
<p class="author-title">Open Source Contributor</p>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#testimonialCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#testimonialCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!---- fiverr ad ---->
<center>
<div class="animate__animated animate__fadeIn animate__delay-2s">
<a href="https://asyntai.com" Target="_Top">
<img border="0" src="assets/asyai.png" alt="Asyntai image" class="fiverr-banner img-fluid">
</a>
</div>
</center>
<!-- Add this section to your index.html file -->
<section class="faq-section py-5" style="background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);">
<div class="container">