-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
8505 lines (8505 loc) · 384 KB
/
Copy pathdata.json
File metadata and controls
8505 lines (8505 loc) · 384 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
[
{
"title": "Major Cloud Providers",
"id": "major-cloud-providers",
"services": [
{
"name": "Google Cloud Platform",
"url": "https://cloud.google.com",
"description": "Free tier available"
},
{
"name": "Google Colab",
"url": "https://colab.research.google.com/",
"description": "Free Jupyter Notebooks development environment."
},
{
"name": "Firebase Studio",
"url": "https://firebase.studio",
"description": "Google Firebase Studio (formerly Project IDX). Online VSCode running on Google Cloud."
},
{
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"description": "Free tier available"
},
{
"name": "CloudFront",
"url": "https://aws.amazon.com/cloudfront/",
"description": "1TB egress per month and 2M Function invocations per month"
},
{
"name": "CloudWatch",
"url": "https://aws.amazon.com/cloudwatch/",
"description": "10 custom metrics and ten alarms"
},
{
"name": "CodeBuild",
"url": "https://aws.amazon.com/codebuild/",
"description": "100min of build time per month"
},
{
"name": "CodeCommit",
"url": "https://aws.amazon.com/codecommit/",
"description": "5 active users,50GB storage, and 10000 requests per month"
},
{
"name": "CodePipeline",
"url": "https://aws.amazon.com/codepipeline/",
"description": "1 active pipeline per month"
},
{
"name": "DynamoDB",
"url": "https://aws.amazon.com/dynamodb/",
"description": "25GB NoSQL DB"
},
{
"name": "EC2",
"url": "https://aws.amazon.com/ec2/",
"description": "750 hours per month of t2.micro or t3.micro(12mo). 100GB egress per month"
},
{
"name": "EBS",
"url": "https://aws.amazon.com/ebs/",
"description": "30GB per month of General Purpose (SSD) or Magnetic(12mo)"
},
{
"name": "Elastic Load Balancing",
"url": "https://aws.amazon.com/elasticloadbalancing/",
"description": "750 hours per month(12mo)"
},
{
"name": "RDS",
"url": "https://aws.amazon.com/rds/",
"description": "750 hours per month of db.t2.micro, db.t3.micro, or db.t4g.micro, 20GB of General Purpose (SSD) storage, 20GB of storage backups(12 mo)"
},
{
"name": "S3",
"url": "https://aws.amazon.com/s3/",
"description": "5GB Standard object storage, 20K Get requests and 2K Put requests(12 mo)"
},
{
"name": "Glacier",
"url": "https://aws.amazon.com/glacier/",
"description": "10GB long-term object storage"
},
{
"name": "Lambda",
"url": "https://aws.amazon.com/lambda/",
"description": "1 million requests per month"
},
{
"name": "SNS",
"url": "https://aws.amazon.com/sns/",
"description": "1 million publishes per month"
},
{
"name": "SES",
"url": "https://aws.amazon.com/ses/",
"description": "3.000 messages per month (12mo)"
},
{
"name": "SQS",
"url": "https://aws.amazon.com/sqs/",
"description": "1 million messaging queue requests"
},
{
"name": "Microsoft Azure",
"url": "https://azure.microsoft.com",
"description": "Free tier available"
},
{
"name": "Virtual Machines",
"url": "https://azure.microsoft.com/services/virtual-machines/",
"description": "1 B1S Linux VM, 1 B1S Windows VM (12mo)"
},
{
"name": "App Service",
"url": "https://azure.microsoft.com/services/app-service/",
"description": "10 web, mobile, or API apps (60 CPU minutes/day)"
},
{
"name": "Functions",
"url": "https://azure.microsoft.com/services/functions/",
"description": "1 million requests per month"
},
{
"name": "DevTest Labs",
"url": "https://azure.microsoft.com/services/devtest-lab/",
"description": "Enable fast, easy, and lean dev-test environments"
},
{
"name": "Active Directory",
"url": "https://azure.microsoft.com/services/active-directory/",
"description": "500,000 objects"
},
{
"name": "Active Directory B2C",
"url": "https://azure.microsoft.com/services/active-directory/external-identities/b2c/",
"description": "50,000 monthly stored users"
},
{
"name": "Azure DevOps",
"url": "https://azure.microsoft.com/services/devops/",
"description": "5 active users, unlimited private Git repos"
},
{
"name": "Azure Pipelines",
"url": "https://azure.microsoft.com/services/devops/pipelines/",
"description": "10 free parallel jobs with unlimited minutes for open source for Linux, macOS, and Windows"
},
{
"name": "Microsoft IoT Hub",
"url": "https://azure.microsoft.com/services/iot-hub/",
"description": "8,000 messages per day"
},
{
"name": "Load Balancer",
"url": "https://azure.microsoft.com/services/load-balancer/",
"description": "1 free public load-balanced IP (VIP)"
},
{
"name": "Notification Hubs",
"url": "https://azure.microsoft.com/services/notification-hubs/",
"description": "1 million push notifications"
},
{
"name": "Bandwidth",
"url": "https://azure.microsoft.com/pricing/details/bandwidth/",
"description": "15GB Inbound(12mo) & 5GB egress per month"
},
{
"name": "Cosmos DB",
"url": "https://azure.microsoft.com/services/cosmos-db/",
"description": "25GB storage and 1000 RUs of provisioned throughput"
},
{
"name": "Static Web Apps",
"url": "https://azure.microsoft.com/pricing/details/app-service/static/",
"description": "Build, deploy, and host static apps and serverless functions with free SSL, Authentication/Authorization, and custom domains"
},
{
"name": "Storage",
"url": "https://azure.microsoft.com/services/storage/",
"description": "5GB LRS File or Blob storage (12mo)"
},
{
"name": "Cognitive Services",
"url": "https://azure.microsoft.com/services/cognitive-services/",
"description": "AI/ML APIs (Computer Vision, Translator, Face detection, Bots, etc) with free tier including limited transactions"
},
{
"name": "Cognitive Search",
"url": "https://azure.microsoft.com/services/search/#features",
"description": "AI-based search and indexation service, free for 10,000 documents"
},
{
"name": "Azure Kubernetes Service",
"url": "https://azure.microsoft.com/services/kubernetes-service/",
"description": "Managed Kubernetes service, free cluster management"
},
{
"name": "Event Grid",
"url": "https://azure.microsoft.com/services/event-grid/",
"description": "100K ops/month"
},
{
"name": "Oracle Cloud",
"url": "https://www.oracle.com/cloud/",
"description": "Free tier available"
},
{
"name": "IBM Cloud",
"url": "https://www.ibm.com/cloud/free/",
"description": "Free tier available"
},
{
"name": "Cloudflare",
"url": "https://www.cloudflare.com/",
"description": "Free tier available"
},
{
"name": "Application Services",
"url": "https://www.cloudflare.com/plans/",
"description": "Free DNS for an unlimited number of domains, DDoS Protection, CDN along with free SSL, Firewall rules and page rules, WAF, Bot Mitigation, Free Unmetered Rate Limiting - 1 rule per domain, Analytics,"
},
{
"name": "Zero Trust & SASE",
"url": "https://www.cloudflare.com/plans/zero-trust-services/",
"description": "Up to 50 Users, 24 hours of activity logging, three network locations"
},
{
"name": "Cloudflare Tunnel",
"url": "https://www.cloudflare.com/products/tunnel/",
"description": "You can expose locally running HTTP port over a tunnel to a random subdomain on trycloudflare.com use [Quick Tunnels](https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-m"
},
{
"name": "Workers",
"url": "https://developers.cloudflare.com/workers/",
"description": "Deploy serverless code for free on Cloudflare's global network—100k daily requests."
},
{
"name": "Workers KV",
"url": "https://developers.cloudflare.com/kv",
"description": "100k read requests per day, 1000 write requests per day, 1000 delete requests per day, 1000 list requests per day, 1 GB stored data"
},
{
"name": "R2",
"url": "https://developers.cloudflare.com/r2/",
"description": "10 GB per month, 1 million Class A operations per month, 10 million Class B operations per month"
},
{
"name": "D1",
"url": "https://developers.cloudflare.com/d1/",
"description": "5 million rows read per day, 100k rows written per day, 1 GB storage"
},
{
"name": "Pages",
"url": "https://developers.cloudflare.com/pages/",
"description": "Develop and deploy your web apps on Cloudflare's fast, secure global network. Five hundred monthly builds, 100 custom domains, Integrated SSL, unlimited accessible seats, unlimited preview deployments"
},
{
"name": "Queues",
"url": "https://developers.cloudflare.com/queues/",
"description": "1 million operations per month"
},
{
"name": "TURN",
"url": "https://developers.cloudflare.com/calls/turn/",
"description": "1TB of free (outgoing) traffic per month."
}
],
"icon": "☁️",
"description": "Free tiers from major cloud providers including AWS, Google Cloud, Azure, and Oracle Cloud."
},
{
"title": "Cloud management solutions",
"id": "cloud-management-solutions",
"services": [
{
"name": "Brainboard",
"url": "https://www.brainboard.co",
"description": "Collaborative solution to visually build and manage cloud infrastructures from end-to-end."
},
{
"name": "Cloud 66",
"url": "https://www.cloud66.com/",
"description": "Free for personal projects (includes one deployment server, one static site), Cloud 66 gives you everything you need to build, deploy, and grow your applications on any cloud without the headache of t"
},
{
"name": "Pulumi",
"url": "https://www.pulumi.com/",
"description": "Modern infrastructure as a code platform that allows you to use familiar programming languages and tools to build, deploy, and manage cloud infrastructure."
},
{
"name": "terraform.io",
"url": "https://www.terraform.io/",
"description": "Terraform Cloud. Free remote state management and team collaboration for up to 500 resources."
},
{
"name": "scalr.com",
"url": "https://scalr.com/",
"description": "Scalr is a Terraform Automation and COllaboration (TACO) product used to better collaboration and automation on infrastructure and configurations managed by Terraform. Full Terraform CLI support, OPA "
},
{
"name": "deployment.io",
"url": "https://deployment.io",
"description": "Deployment.io helps developers automate deployments on AWS. On our free tier, a developer (single user) can deploy unlimited static sites, web services, and environments. We provide 20 job executions "
}
],
"icon": "🛠️",
"description": "Infrastructure as code and cloud management platforms."
},
{
"title": "Source Code Repos",
"id": "source-code-repos",
"services": [
{
"name": "Bitbucket",
"url": "https://bitbucket.org/",
"description": "Unlimited public and private Git repos for up to 5 users with Pipelines for CI/CD"
},
{
"name": "chiselapp.com",
"url": "https://chiselapp.com/",
"description": "Unlimited public and private Fossil repositories"
},
{
"name": "codebasehq.com",
"url": "https://www.codebasehq.com/",
"description": "One free project with 100 MB space and two users"
},
{
"name": "Codeberg",
"url": "https://codeberg.org/",
"description": "Unlimited public and private Git repos for free and open-source projects (with unlimited collaborators). Powered by [Forgejo](https://forgejo.org/). Static website hosting with [Codeberg Pages](https:"
},
{
"name": "GitGud",
"url": "https://gitgud.io",
"description": "Unlimited private and public repositories. Free forever. Powered by GitLab & Sapphire. CI/CD not provided."
},
{
"name": "GitHub",
"url": "https://github.com/",
"description": "Unlimited public repositories and unlimited private repositories (with unlimited collaborators). Includes CI/CD, Development Environment, Static Hosting, Package and Container hosting, Project managem"
},
{
"name": "gitlab.com",
"url": "https://about.gitlab.com/",
"description": "Unlimited public and private Git repos with up to 5 collaborators. Includes CI/CD, Static Hosting, Container Registry, Project Management and Issue Tracking"
},
{
"name": "framagit.org",
"url": "https://framagit.org/",
"description": "Framagit is the software forge of Framasoft based on the Gitlab software includes CI, Static Pages, Project pages and Issue tracking."
},
{
"name": "heptapod.net",
"url": "https://foss.heptapod.net/",
"description": "Heptapod is a friendly fork of GitLab Community Edition providing support for Mercurial"
},
{
"name": "ionicframework.com",
"url": "https://ionicframework.com/appflow",
"description": "Repo and tools to develop applications with Ionic; also you have an ionic repo"
},
{
"name": "NotABug",
"url": "https://notabug.org",
"description": "NotABug.org is a free-software code collaboration platform for freely licensed projects, Git-based"
},
{
"name": "OSDN",
"url": "https://osdn.net/",
"description": "OSDN.net is a free-of-charge service for open-source software developers, offering SVN/Git/Mercurial/Bazaar/CVS repositories."
},
{
"name": "Pagure.io",
"url": "https://pagure.io",
"description": "Pagure.io is a free and open source software code collaboration platform for FOSS-licensed projects, Git-based"
},
{
"name": "perforce.com",
"url": "https://www.perforce.com/products/helix-teamhub",
"description": "Free 1GB Cloud and Git, Mercurial, or SVN repositories."
},
{
"name": "pijul.com",
"url": "https://pijul.com/",
"description": "Unlimited free and open source distributed version control system. Its distinctive feature is based on a sound theory of patches, which makes it easy to learn, use, and distribute. Solves many problem"
},
{
"name": "plasticscm.com",
"url": "https://plasticscm.com/",
"description": "Free for individuals, OSS, and nonprofit organizations"
},
{
"name": "projectlocker.com",
"url": "https://projectlocker.com",
"description": "One free private project (Git and Subversion) with 50 MB of space"
},
{
"name": "RocketGit",
"url": "https://rocketgit.com",
"description": "Repository Hosting based on Git. Unlimited Public and private repositories."
},
{
"name": "savannah.gnu.org",
"url": "https://savannah.gnu.org/",
"description": "Serves as a collaborative software development management system for free Software projects (for GNU Projects)"
},
{
"name": "savannah.nongnu.org",
"url": "https://savannah.nongnu.org/",
"description": "Serves as a collaborative software development management system for free Software projects (for non-GNU projects)"
}
],
"icon": "📦",
"description": "Git repositories and version control hosting services."
},
{
"title": "APIs, Data, and ML",
"id": "apis,-data,-and-ml",
"services": [
{
"name": "JSONGrid",
"url": "https://jsongrid.com",
"description": "Free tool to Visualize, Edit, Filter complex JSON data into beautiful tabular Grid. Save and Share JSON data over link link."
},
{
"name": "Zerosheets",
"url": "https://zerosheets.com",
"description": "Turn your Google Sheets spreadsheets into powerful API`s to rapidly develop prototypes, websites, apps and more. 500 requests per month available for free."
},
{
"name": "JSON to Table",
"url": "https://jsontotable.org",
"description": "Convert JSON into an interactive table for quick viewing, editing, and sharing online."
},
{
"name": "IP.City",
"url": "https://ip.city",
"description": "100 Free IP geolocation requests per day"
},
{
"name": "Abstract API",
"url": "https://www.abstractapi.com",
"description": "API suite for various use cases, including IP geolocation, gender detection, or email validation."
},
{
"name": "Apify",
"url": "https://www.apify.com/",
"description": "Web scraping and automation platform to create an API for any website and extract data. Ready-made scrapers, integrated proxies, and custom solutions. Free plan with $5 platform credits included every"
},
{
"name": "APITemplate.io",
"url": "https://apitemplate.io",
"description": "Auto-generate images and PDF documents with a simple API or automation tools like Zapier & Airtable. No CSS/HTML is required. The free plan comes with 50 images/month and three templates."
},
{
"name": "APIToolkit.io",
"url": "https://apitoolkit.io",
"description": "All the tools you need to fully understand what's going on in your APIs and Backends. With automatic API contract validation and monitoring. The free plan covers servers with up to 10,000 requests per"
},
{
"name": "APIVerve",
"url": "https://apiverve.com",
"description": "Get instant access to over 120+ APIs for free, built with quality, consistency, and reliability in mind. The free plan covers up to 50 API Tokens per month. (Possibly taken down, 2025-06-25)"
},
{
"name": "Arize AI",
"url": "https://arize.com/",
"description": "Machine learning observability for model monitoring and root-causing issues such as data quality and performance drift. Free up to two models."
},
{
"name": "Maxim AI",
"url": "https://getmaxim.ai/",
"description": "Simulate, evaluate, and observe your AI agents. Maxim is an end-to-end evaluation and observability platform, helping teams ship their AI agents reliably and >5x faster. Free forever for indie develop"
},
{
"name": "Beeceptor",
"url": "https://beeceptor.com",
"description": "No-code, cloud-based platform for mocking and debugging multi-protocol APIs (REST, SOAP, gRPC & GraphQL), providing instant servers with rules-based logic, CRUD & stateful mocking, proxying, and CORS "
},
{
"name": "BigDataCloud",
"url": "https://www.bigdatacloud.com/",
"description": "Provides fast, accurate, and free (Unlimited or up to 10K-50K/month) APIs for modern web like IP Geolocation, Reverse Geocoding, Networking Insights, Email and Phone Validation, Client Info and more."
},
{
"name": "Browse AI",
"url": "https://www.browse.ai",
"description": "Extracting and monitoring data on the web. 1k credits per month for free, equals 1k concurrent requests."
},
{
"name": "BrowserCat",
"url": "https://www.browsercat.com",
"description": "Headless browser API for automation, scraping, AI agent web access, image/pdf generation, and more. Free plan with 1k requests per month."
},
{
"name": "CarAPI.dev",
"url": "https://carapi.dev",
"description": "Comprehensive automotive data API with VIN decoding, stolen vehicle checks, vehicle valuation, inspection data, and more. Free tier includes 100 requests/month across all 9 endpoints."
},
{
"name": "Calendarific",
"url": "https://calendarific.com",
"description": "Enterprise-grade Public holiday API service for over 200 countries. The free plan includes 500 calls per month."
},
{
"name": "Canopy",
"url": "https://www.canopyapi.co/",
"description": "GraphQL API for Amazon.com product, search, and category data. The free plan includes 100 calls per month."
},
{
"name": "Clarifai",
"url": "https://www.clarifai.com",
"description": "Image API for custom face recognition and detection. Able to train AI models. The free plan has 1,000 calls per month."
},
{
"name": "Cloudmersive",
"url": "https://cloudmersive.com/",
"description": "Utility API platform with full access to expansive API Library including Document Conversion, Virus Scanning, and more with 600 calls/month, North America AZ only, 2.5MB maximum file size."
},
{
"name": "Colaboratory",
"url": "https://colab.research.google.com",
"description": "Free web-based Python notebook environment with Nvidia Tesla K80 GPU."
},
{
"name": "CometML",
"url": "https://www.comet.com/site/",
"description": "The MLOps platform for experiment tracking, model production management, model registry, and complete data lineage, covering your workflow from training to production. Free for individuals and academi"
},
{
"name": "Commerce Layer",
"url": "https://commercelayer.io",
"description": "Composable commerce API that can build, place, and manage orders from any front end. The developer plan allows 100 orders per month and up to 1,000 SKUs for free."
},
{
"name": "Composio",
"url": "https://composio.dev/",
"description": "Integration platform for AI Agents and LLMs. Integrate over 200+ tools across the agentic internet."
},
{
"name": "Conversion Tools",
"url": "https://conversiontools.io/",
"description": "Online File Converter for documents, images, video, audio, and eBooks. REST API is available. Libraries for Node.js, PHP, Python. Support files up to 50 GB (for paid plans). The free tier is limited b"
},
{
"name": "Country-State-City Microservice API",
"url": "https://country-state-city.rebuscando.info/",
"description": "API and Microservice to provides a wide range of information including countries, regions, provinces, cities, postal codes, and much more. The free tier includes up to 100 requests per day."
},
{
"name": "Coupler",
"url": "https://www.coupler.io/",
"description": "Data integration tool that syncs between apps. It can create live dashboards and reports, transform and manipulate values, and collect and back up insights. The free plan is limited to one user, data "
},
{
"name": "CraftMyPDF",
"url": "https://craftmypdf.com",
"description": "Auto-Generate PDF documents from reusable templates with a drop-and-drop editor and a simple API. The free plan comes with 100 PDFs/month and three templates."
},
{
"name": "Crawlbase",
"url": "https://crawlbase.com/",
"description": "Crawl and scrape websites without proxies, infrastructure, or browsers. We solve captchas for you and prevent you from being blocked. The first 1000 calls are free of charge."
},
{
"name": "CurlHub",
"url": "https://curlhub.io",
"description": "Proxy service for inspecting and debugging API calls. The free plan includes 10,000 requests per month."
},
{
"name": "CurrencyScoop",
"url": "https://currencyscoop.com",
"description": "Realtime currency data API for fintech apps. The free plan includes 5,000 calls per month."
},
{
"name": "CustomJS",
"url": "https://www.customjs.io",
"description": "HTML to PDF or PDF to PNG/Text & PDF merging/extraction/merging APIs. Free tier has 600 calls a month."
},
{
"name": "Cube",
"url": "https://cube.dev/",
"description": "Cube helps data engineers and application developers access data from modern data stores, organize it into consistent definitions, and deliver it to every application. The fastest way to use Cube is w"
},
{
"name": "Data Fetcher",
"url": "https://datafetcher.com",
"description": "Connect Airtable to any application or API with no code. Postman-like interface for running API requests in Airtable. Pre-built integrations with dozens of apps. The free plan includes 100 runs per mo"
},
{
"name": "Dataimporter.io",
"url": "https://www.dataimporter.io",
"description": "Tool for connecting, cleaning, and importing data into Salesforce. Free Plan includes up to 20,000 records per month."
},
{
"name": "Datalore",
"url": "https://datalore.jetbrains.com",
"description": "Python notebooks by Jetbrains. Includes 10 GB of storage and 120 hours of runtime each month."
},
{
"name": "Data Miner",
"url": "https://dataminer.io/",
"description": "A browser extension (Google Chrome, MS Edge) for data extraction from web pages CSV or Excel. The free plan gives you 500 pages/month."
},
{
"name": "Datapane",
"url": "https://datapane.com",
"description": "API for building interactive reports in Python and deploying Python scripts and Jupyter Notebooks as self-service tools."
},
{
"name": "DB-IP",
"url": "https://db-ip.com/api/free",
"description": "Free IP geolocation API with 1k request per IP per day.lite database under the CC-BY 4.0 License is free too."
},
{
"name": "DB Designer",
"url": "https://www.dbdesigner.net/",
"description": "Cloud-based Database schema design and modeling tool with a free starter plan of 2 Database models and ten tables per model."
},
{
"name": "DeepAR",
"url": "https://developer.deepar.ai",
"description": "Augmented reality face filters for any platform with one SDK. The free plan provides up to 10 monthly active users (MAU) and tracks up to 4 faces"
},
{
"name": "Deepnote",
"url": "https://deepnote.com",
"description": "A new data science notebook. Jupyter is compatible with real-time collaboration and running in the cloud. The free tier includes unlimited personal projects, unlimited basic machines with 5GB RAM and "
},
{
"name": "Disease.sh",
"url": "https://disease.sh/",
"description": "A free API providing accurate data for building the Covid-19 related useful Apps."
},
{
"name": "Doczilla",
"url": "https://www.doczilla.app/",
"description": "SaaS API empowering the generation of screenshots or PDFs directly from HTML/CSS/JS code. The free plan allows 250 documents month."
},
{
"name": "Doppio",
"url": "https://doppio.sh/",
"description": "Managed API to generate and privately store PDFs and Screenshots using top rendering technology. The free plan allows 400 PDFs and Screenshots per month."
},
{
"name": "drawDB",
"url": "https://drawdb.app/",
"description": "Free and open-source online database diagram editor with no signup required."
},
{
"name": "dreamfactory.com",
"url": "https://dreamfactory.com/",
"description": "Open source REST API backend for mobile, web, and IoT applications. Hook up any SQL/NoSQL database, file storage system, or external service, and it instantly creates a comprehensive REST API platform"
},
{
"name": "Duply.co",
"url": "https://duply.co",
"description": "Create dynamic images from API & URL, design template once and reuse it. The free tier offers 20 free credits."
},
{
"name": "DynamicDocs",
"url": "https://advicement.io",
"description": "Generate PDF documents with JSON to PDF API based on LaTeX templates. The free plan allows 50 API calls per month and access to a library of templates."
},
{
"name": "Efemarai",
"url": "https://efemarai.com",
"description": "Testing and debugging platform for ML models and data. Visualize any computational graph. Free local use."
},
{
"name": "ERD Lab",
"url": "https://www.erdlab.io",
"description": "Free cloud-based entity relationship diagram (ERD) tool made for developers. Free trial includes 2 projecs with 10 tables each."
},
{
"name": "ExtendsClass",
"url": "https://extendsclass.com/rest-client-online.html",
"description": "Free web-based HTTP client to send HTTP requests."
},
{
"name": "Export SDK",
"url": "https://exportsdk.com",
"description": "PDF generator API with drag-and-drop template editor that provides an SDK and no-code integrations. The free plan has 250 monthly pages, unlimited users, and three templates."
},
{
"name": "file.coffee",
"url": "https://file.coffee/",
"description": "A platform where you can store up to 15MB/file (30/MB file with an account)."
},
{
"name": "Financial Data",
"url": "https://financialdata.net/",
"description": "Stock market and financial data API. Free plan allows 300 requests per day."
},
{
"name": "FormatJSONOnline.com",
"url": "https://formatjsononline.com",
"description": "A free, browser-based tool to format, validate,compare and minify JSON data instantly."
},
{
"name": "FraudLabs Pro",
"url": "https://www.fraudlabspro.com",
"description": "Screen an order transaction for credit card payment fraud. This REST API will detect all possible fraud traits based on the input parameters of an order. The Free Micro plan has 500 transactions per m"
},
{
"name": "GeoDataSource",
"url": "https://www.geodatasource.com",
"description": "Location search service looks up city names using latitude and longitude coordinates. Free API queries up to 500 times per month."
},
{
"name": "Geolocated.io",
"url": "https://geolocated.io",
"description": "IP Geolocation API with multi-continent servers, offering a free plan with 2,000 requests per day."
},
{
"name": "Glitterly",
"url": "https://glitterly.app/",
"description": "Programmatically generate dynamic images from base templates. Restful API and nocode integrations. The free tier comes with 50 images/month and five templates."
},
{
"name": "Hex",
"url": "https://hex.tech/",
"description": "a collaborative data platform for notebooks, data apps, and knowledge libraries. Free community tier with up to five projects."
},
{
"name": "Hook0",
"url": "https://www.hook0.com/",
"description": "Hook0 is an open-source Webhooks-as-a-service (WaaS) that makes it easy for online products to provide webhooks. Dispatch up to 100 events/day with seven days of history retention for free."
},
{
"name": "Hoppscotch",
"url": "https://hoppscotch.io",
"description": "A free, fast, and beautiful API request builder."
},
{
"name": "huggingface.co",
"url": "https://huggingface.co",
"description": "Build, train, and deploy NLP models for Pytorch, TensorFlow, and JAX. Free up to 30k input characters/mo."
},
{
"name": "Hybiscus",
"url": "https://hybiscus.dev/",
"description": "Build pdf reports using a simple declarative API. The 14-day free tier includes 50 single-page reports with the ability to customize color palettes and fonts."
},
{
"name": "Invantive Cloud",
"url": "https://cloud.invantive.com/",
"description": "Access over 70 (cloud)platforms such as Exact Online, Twinfield, ActiveCampaign or Visma using Invantive SQL or OData4 (typically Power BI or Power Query). Includes data replication and exchange. Free"
},
{
"name": "ipaddress.sh",
"url": "https://ipaddress.sh",
"description": "Simple service to get a public IP address in different [formats](https://about.ipaddress.sh/)."
},
{
"name": "ip-api",
"url": "https://ip-api.com",
"description": "IP Geolocation API, Free for non-commercial use, no API key required, limited to 45 req/minute from the same IP address for the free plan."
},
{
"name": "ipbase.com",
"url": "https://ipbase.com",
"description": "IP Geolocation API - Forever free plan that spans 150 monthly requests."
},
{
"name": "IP Geolocation",
"url": "https://ipgeolocation.io/",
"description": "IP Geolocation API - Forever free plan for developers with a 1,000 requests per day limit."
},
{
"name": "IP Geolocation API",
"url": "https://www.abstractapi.com/ip-geolocation-api",
"description": "IP Geolocation API from Abstract - Allows 1,000 free requests."
},
{
"name": "IPLocate",
"url": "https://www.iplocate.io",
"description": "IP Geolocation API, free up to 1,000 requests/day. Includes proxy/VPN/hosting detection, ASN data, IP to Company, and more. IPLocate also offers free downloadable IP to Country and IP to ASN databases"
},
{
"name": "IP2Location",
"url": "https://www.ip2location.com",
"description": "Freemium IP geolocation service. LITE database is available for free download. Import the database in the server and perform a local query to determine the city, coordinates, and ISP information."
},
{
"name": "IP2Location.io",
"url": "https://www.ip2location.io/",
"description": "Freemium, fast, and reliable IP geolocation API. Get data like city, coordinates, ISP, ASN, AS data and more. The free plan includes 50k credits per month. IP2Location.io also offers 500 free WHOIS an"
},
{
"name": "ipapi",
"url": "https://ipapi.co/",
"description": "IP Address Location API by Kloudend, Inc - A reliable geolocation API built on AWS, trusted by Fortune 500. The free tier offers 30k lookups/month (1k/day) without signup."
},
{
"name": "ipapi.is",
"url": "https://ipapi.is/",
"description": "A reliable IP Address API from Developers for Developers with the best Hosting Detection capabilities that exist. The free plan offers 1000 lookups without signup."
},
{
"name": "IPinfo",
"url": "https://ipinfo.io/",
"description": "Fast, accurate, and free (up to 50k/month) IP address data API. Offers APIs with details on geolocation, companies, carriers, IP ranges, domains, abuse contacts, and more. All paid APIs can be trialed"
},
{
"name": "IPQuery",
"url": "https://ipquery.io",
"description": "Unlimited IP API for developers, no ratelimits, or pricing."
},
{
"name": "IPTrace",
"url": "https://iptrace.io",
"description": "An embarrassingly simple API that provides your business with reliable and helpful IP geolocation data with 50,000 free lookups per month."
},
{
"name": "JSON2Video",
"url": "https://json2video.com",
"description": "A video editing API to automate video marketing and social media videos, programmatically or with no code."
},
{
"name": "JSON IP",
"url": "https://getjsonip.com",
"description": "Returns the Public IP address of the client it is requested from. No registration is required for the free tier. Using CORS, data can be requested using client-side JS directly from the browser. Usefu"
},
{
"name": "JSON Serve",
"url": "https://jsonserve.com/",
"description": "A free service that helps developers to store JSON objects and use that JSON as a REST API in their app."
},
{
"name": "JSONing",
"url": "https://jsoning.com/api/",
"description": "Create a fake REST API from a JSON object, and customize HTTP status codes, headers, and response bodies."
},
{
"name": "JSONSwiss",
"url": "https://www.jsonswiss.com/",
"description": "JSONSwiss is a powerful online JSON viewer, editor, and validator. Format, visualize, search, and manipulate JSON data with AI-powered repair, tree view, table view, code generation in 12+ programming"
},
{
"name": "konghq.com",
"url": "https://konghq.com/",
"description": "API Marketplace and powerful private and public API tools. With the free tier, some features such as monitoring, alerting, and support, are limited."
},
{
"name": "Kreya",
"url": "https://kreya.app",
"description": "Free gRPC GUI client to call and test gRPC APIs. Can import gRPC APIs via server reflection."
},
{
"name": "Lightly",
"url": "https://www.lightly.ai/",
"description": "Improve your machine-learning models by using the correct data. Use datasets of up to 1000 samples for free."
},
{
"name": "LoginLlama",
"url": "https://loginllama.app",
"description": "A login security API to detect fraudulent and suspicious logins and notify your customers. Free for 1,000 logins per month."
},
{
"name": "MailboxValidator",
"url": "https://www.mailboxvalidator.com",
"description": "Email verification service using real mail server connection to confirm valid email. The free API plan has 100 verifications per month."
},
{
"name": "Market Data API",
"url": "https://www.marketdata.app",
"description": "Provides real-time and historical financial data for stocks, options, mutual funds, and more. The Free Forever API tier allows for 100 daily API requests at no charge."
},
{
"name": "Meteosource Weather API",
"url": "https://www.meteosource.com/",
"description": "global weather API for current and forecasted weather data. Forecasts are based on a machine learning combination of more weather models to achieve better accuracy. The free plan comes with 400 calls "
},
{
"name": "microlink.io",
"url": "https://microlink.io/",
"description": "It turns any website into data such as metatags normalization, beauty link previews, scraping capabilities, or screenshots as a service. 50 requests per day, every day free."
},
{
"name": "Mindee",
"url": "https://developers.mindee.com",
"description": "Mindee is a powerful OCR software and an API-first platform that helps developers automate applications' workflows by standardizing the document processing layer through data recognition for key infor"
},
{
"name": "Mintlify",
"url": "https://mintlify.com",
"description": "Modern standard for API documentation. Beautiful and easy-to-maintain UI components, in-app search, and interactive playground. Free for 1 editor."
},
{
"name": "MockAPI",
"url": "https://www.mockapi.io/",
"description": "MockAPI is a simple tool that lets you quickly mock up APIs, generate custom data, and perform operations using a RESTful interface. MockAPI is meant to be a prototyping/testing/learning tool. One pro"
},
{
"name": "Mockfly",
"url": "https://www.mockfly.dev/",
"description": "Mockfly is a trusted development tool for API mocking and feature flag management. Quickly generate and control mock APIs with an intuitive interface. The free tier offers 500 requests per day."
},
{
"name": "Mocki",
"url": "https://mocki.io",
"description": "A tool that lets you create mock GraphQL and REST APIs synced to a GitHub repository. Simple REST APIs are free to develop and use without signup."
},
{
"name": "Mocko.dev",
"url": "https://mocko.dev/",
"description": "Proxy your API, choose which endpoints to mock in the cloud and inspect traffic, for free. Speed up your development and integration tests."
},
{
"name": "Mocky",
"url": "https://designer.mocky.io/",
"description": "A simple web app to generate custom HTTP responses for mocking HTTP requests. Also available as [open source](https://github.com/julien-lafont/Mocky)."
},
{
"name": "Mock N Roll",
"url": "https://mocknroll.me/",
"description": "Free Mocks API Service—a powerful tool to simulate real API responses without backend delays. Perfect for frontend devs, QA testers, and DevOps teams. [repo](https://github.com/haerulmuttaqin/mocknrol"
},
{
"name": "microenv.com",
"url": "https://microenv.com",
"description": "Create fake REST API for developers with the possibility to generate code and app in a docker container."
},
{
"name": "Multi-Exit IP Address Checker",
"url": "https://ip.alstra.ca/",
"description": "A free and simple tool to check your exit IP address across multiple nodes and understand how your IP appears to different global regions and services. Useful for testing rule-based DNS splitting tool"
},
{
"name": "Namekit",
"url": "https://namekit.app/",
"description": "AI-powered domain discovery – find available, standard-price names instantly. Free daily queries."
},
{
"name": "News API",
"url": "https://newsapi.org",
"description": "Search news on the web with code, and get JSON results. Developers get 100 queries free each day. Articles have a 24 hour delay."
},
{
"name": "numlookupapi.com",
"url": "https://numlookupapi.com",
"description": "Free phone number validation API - 100 free requests / month."
},
{
"name": "OCR.Space",
"url": "https://ocr.space/",
"description": "An OCR API parses image and pdf files that return the text results in JSON format. 25,000 requests per month are free and a 1MB file size limit."
},
{
"name": "OpenAPI3 Designer",
"url": "https://openapidesigner.com/",
"description": "Visually create Open API 3 definitions for free."
},
{
"name": "parsehub.com",
"url": "https://parsehub.com/",
"description": "Extract data from dynamic sites, turn dynamic websites into APIs, five projects free."
},
{
"name": "Parseur",
"url": "https://parseur.com",
"description": "20 free pages/month: Extract data from PDFs, emails. AI powered. Full API access."
},
{
"name": "PDFBolt",
"url": "https://pdfbolt.com",
"description": "Developer-focused PDF generation API designed with privacy in mind. It offers Stripe-inspired documentation and includes 500 free PDF conversions per month."
},
{
"name": "pdfEndpoint.com",
"url": "https://pdfendpoint.com",
"description": "Effortlessly convert HTML or URLs to PDF with a simple API. One hundred conversions per month for free."
},
{
"name": "PDF-API.io",
"url": "https://pdf-api.io",
"description": "PDF Automation API, visual template editor or HTML to PDF, dynamic data integration, and PDF rendering with an API. The free plan comes with one template, 100 PDFs/month."
},
{
"name": "Pixela",
"url": "https://pixe.la/",
"description": "Free daystream database service. All operations are performed by API. Visualization with heat maps and line graphs is also possible."
},
{
"name": "Postman",
"url": "https://postman.com",
"description": "Simplify workflows and create better APIs – faster – with Postman, a collaboration platform for API development. Use the Postman App for free forever. Postman cloud features are also free forever with"
},
{
"name": "Insomnia",
"url": "https://insomnia.rest",
"description": "Open-source API client for designing and testing APIs, it supports REST and GraphQL"
},
{