-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.json
3102 lines (3102 loc) · 144 KB
/
openapi.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
{
"openapi": "3.1.0",
"info": {
"title": "Free Public APIs API",
"description": "FreePublicAPIs now has a free public API! The Free Public APIs API provides up-to-date information on every free public API listed on freepublicapis.com. Perfect for developers, students and hobbyists. It is limited to 1000 requests a day, if you need more, feel free to reach out. Also if you build something with this API, make sure to add it as a showcase project here.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://www.freepublicapis.com/api"
}
],
"paths": {
"/random": {
"get": {
"summary": "Get a Random API",
"operationId": "GetRandom",
"responses": {
"200": {
"$ref": "#/components/responses/SimpleAPIInfoResponse"
}
}
}
},
"/apis/{id}": {
"parameters": [
{
"$ref": "#/components/parameters/id"
}
],
"get": {
"summary": "Get a Specific API by ID",
"operationId": "GetAPI",
"responses": {
"200": {
"$ref": "#/components/responses/SimpleAPIInfoResponse"
},
"500": {
"$ref": "#/components/responses/InternalServerErrorResponse"
}
}
}
},
"/apis": {
"parameters": [
{
"$ref": "#/components/parameters/limit"
},
{
"$ref": "#/components/parameters/sort"
}
],
"get": {
"summary": "List APIs with Parameters",
"operationId": "ListApis",
"responses": {
"200": {
"$ref": "#/components/responses/APIInfosResponse"
}
}
}
}
},
"components": {
"schemas": {
"SimpleAPIInfo": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"example": 38
},
"emoji": {
"type": "string",
"example": "📄"
},
"title": {
"type": "string",
"example": "EmojiHub"
},
"description": {
"type": "string",
"example": "Get random emojis or access the entire emoji database by category or group. Easily retrieve html codes to use in web applications."
},
"documentation": {
"type": "string",
"format": "uri",
"example": "https://github.com/cheatsnake/emojihub"
},
"methods": {
"type": "integer",
"example": 3
},
"health": {
"type": "integer",
"example": 25
},
"source": {
"type": "string",
"format": "uri",
"example": "https://freepublicapis.com/emojihub"
}
},
"required": [
"id",
"emoji",
"title",
"description",
"documentation",
"methods",
"health",
"source"
],
"example": {
"id": 38,
"emoji": "📄",
"title": "EmojiHub",
"description": "Get random emojis or access the entire emoji database by category or group. Easily retrieve html codes to use in web applications.",
"documentation": "https://github.com/cheatsnake/emojihub",
"methods": 3,
"health": 25,
"source": "https://freepublicapis.com/emojihub"
}
},
"APIInfos": {
"type": "array",
"items": {
"$ref": "#/components/schemas/APIInfo"
},
"example": [
{
"id": 220,
"emoji": "⚠️",
"title": "404 Error Handler",
"description": "This API is designed to help developers manage and respond to 404 errors on their websites. It provides insights into potential causes and offers solutions for correcting broken links and missing files to improve user experience.",
"documentation": "http://ccdb.hemiola.com/",
"methods": 1,
"health": 65,
"popularity": 551,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 712,
"source": "https://freepublicapis.com/404-error-handler"
},
{
"id": 154,
"emoji": "🟢",
"title": "4chan API",
"description": "4chan's read-only JSON API",
"documentation": "https://github.com/4chan/4chan-API",
"methods": 3,
"health": 70,
"popularity": 622,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 291,
"source": "https://freepublicapis.com/4chan-api"
},
{
"id": 294,
"emoji": "☁️",
"title": "7Timer Weather API",
"description": "The 7Timer Weather API provides global numerical weather forecasts derived from high-resolution models. Users can access weather data in graphical or machine-readable formats without needing an API key, enabling programmatic access to various meteorological elements.",
"documentation": "https://www.7timer.info/doc.php?lang=en",
"methods": 1,
"health": 95,
"popularity": 307,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 423,
"source": "https://freepublicapis.com/7timer-weather-api"
},
{
"id": 378,
"emoji": "🛠️",
"title": "API Tools",
"description": "API Tools – Access over 30+ REST APIs, all completely free with no usage limits. Explore a wide range of tools designed for everyone, no sign-up or restrictions required!",
"documentation": "https://api.apitools.workers.dev/",
"methods": 1,
"health": 30,
"popularity": 203,
"avg_reliability": 20,
"avg_error": 80,
"avg_latency": 821,
"source": "https://freepublicapis.com/api-tools"
},
{
"id": 167,
"emoji": "🕵️",
"title": "APIC Agent",
"description": "Free REST API to detect browser, OS, device from user agent string. Provides easy-to-use API to avoid user-agent parsing libraries.",
"documentation": "https://www.apicagent.com/docs",
"methods": 1,
"health": 95,
"popularity": 137,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 490,
"source": "https://freepublicapis.com/apic-agent"
},
{
"id": 32,
"emoji": "🌊",
"title": "Aare.guru API",
"description": "Public API for Aare river data including temperature, flow rate, weather forecasts, and more. Non-commercial use allowed with customizable app and version parameters.",
"documentation": "https://aareguru.existenz.ch/",
"methods": 4,
"health": 88,
"popularity": 512,
"avg_reliability": 75,
"avg_error": 0,
"avg_latency": 180,
"source": "https://freepublicapis.com/aareguru-api"
},
{
"id": 310,
"emoji": "🏠",
"title": "Address Lookup Service",
"description": "The Address Lookup Service API provides a means for users to retrieve address records based on input address information. Users can submit both GET and POST requests to search for address details using free-text format inputs, facilitating easy access to relevant address data.",
"documentation": "https://data.gov.hk/en-data/dataset/hk-dpo-als_01-als/resource/210c2cc9-1172-4529-a82b-f10107513e9c",
"methods": 1,
"health": 60,
"popularity": 109,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 1065,
"source": "https://freepublicapis.com/address-lookup-service"
},
{
"id": 117,
"emoji": "💬",
"title": "Advice Slip API",
"description": "Provides random advice slips, advice by ID, and searching advice functionalities. Includes objects for slip, search, and message.",
"documentation": "https://api.adviceslip.com/",
"methods": 2,
"health": 95,
"popularity": 464,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 305,
"source": "https://freepublicapis.com/advice-slip-api"
},
{
"id": 350,
"emoji": "💡",
"title": "Advice Slip API",
"description": "This API provides random pieces of advice to users, enabling them to receive thoughtful suggestions on various topics. Users can easily retrieve advice slips in a straightforward manner through simple API calls.",
"documentation": "https://api.adviceslip.com/advice/search/try1",
"methods": 1,
"health": 95,
"popularity": 125,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 348,
"source": "https://freepublicapis.com/advice-slip-api-2"
},
{
"id": 214,
"emoji": "🌟",
"title": "Affirmation Generator API",
"description": "This API provides inspirational affirmations to boost positivity and self-esteem. Users can retrieve random affirmations to enhance their mental wellness and motivation.",
"documentation": "https://www.affirmations.dev/",
"methods": 1,
"health": 95,
"popularity": 599,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 361,
"source": "https://freepublicapis.com/affirmation-generator-api"
},
{
"id": 34,
"emoji": "🌎",
"title": "Agify.io",
"description": "Estimate age from names. Integrate age inference directly into workflows and perform efficient inference on big datasets with simple APIs. Enrich data with demographic insights.",
"documentation": "https://agify.io/",
"methods": 1,
"health": 90,
"popularity": 638,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 584,
"source": "https://freepublicapis.com/agifyio"
},
{
"id": 121,
"emoji": "🌱",
"title": "Air Quality API",
"description": "Pollutants and pollen forecast in 11 km resolution",
"documentation": "https://open-meteo.com/en/docs/air-quality-api",
"methods": 1,
"health": 95,
"popularity": 1692,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 229,
"source": "https://freepublicapis.com/air-quality-api"
},
{
"id": 339,
"emoji": "💬",
"title": "Alan Perlis Quotes",
"description": "This API provides random epigrams by Alan Perlis, a notable figure in computer science. Users can programmatically access a variety of his thought-provoking quotes to enhance their applications or for inspiration.",
"documentation": "https://perl.is/",
"methods": 1,
"health": 95,
"popularity": 151,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 338,
"source": "https://freepublicapis.com/alan-perlis-quotes"
},
{
"id": 175,
"emoji": "🎮",
"title": "AmiiboAPI",
"description": "A RESTful API for Amiibo providing information on different amiibos, types, game series, characters, and more. It is primarily used for educational purposes and allows reading-only access with no authentication required.",
"documentation": "https://amiiboapi.com/docs/",
"methods": 1,
"health": 60,
"popularity": 72,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 1010,
"source": "https://freepublicapis.com/amiiboapi"
},
{
"id": 160,
"emoji": "🔥",
"title": "AnApiOfIceAndFire",
"description": "API providing data from the universe of Ice and Fire (Game of Thrones) including characters, houses, and books. Open source and accessible through HTTP with SDKs available in multiple languages.",
"documentation": "https://anapioficeandfire.com/",
"methods": 2,
"health": 95,
"popularity": 84,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 265,
"source": "https://freepublicapis.com/anapioficeandfire"
},
{
"id": 274,
"emoji": "📚",
"title": "Answerbook API",
"description": "The Answerbook API provides access to a collection of random answers and features, such as a random password generator and Tang poetry retrieval. It can be deployed on Cloudflare Workers, making it adaptable for various applications.",
"documentation": "https://github.com/tbdavid2019/answerbook-api",
"methods": 1,
"health": 95,
"popularity": 266,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 316,
"source": "https://freepublicapis.com/answerbook-api"
},
{
"id": 341,
"emoji": "🐟",
"title": "Anti-Phishing Detection",
"description": "FishFish is an automated service designed to quickly detect and mitigate phishing threats before they can be exploited for malicious purposes. It provides a streamlined solution for identifying harmful resources efficiently.",
"documentation": "https://fishfish.gg/",
"methods": 2,
"health": 77,
"popularity": 92,
"avg_reliability": 50,
"avg_error": 0,
"avg_latency": 806,
"source": "https://freepublicapis.com/anti-phishing-detection"
},
{
"id": 151,
"emoji": "💼",
"title": "Arbeitnow",
"description": "Arbeitnow helps companies hire candidates with visa sponsorship / four day work week / remote opportunities.",
"documentation": "https://documenter.getpostman.com/view/18545278/UVJbJdKh",
"methods": 1,
"health": 70,
"popularity": 162,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 419,
"source": "https://freepublicapis.com/arbeitnow"
},
{
"id": 263,
"emoji": "🗺️",
"title": "ArcGIS Hub - World Countries Generalized",
"description": "The World Countries Generalized layer provides a simplified representation of global country boundaries, optimized for performance and visibility at broader scales (1:5,000,000 and beyond). Developed by Esri using data from Garmin International, the CIA World Factbook, and the National Geographic Society, this layer is updated annually to reflect changes in country names and significant borders. Ideal for applications requiring an authoritative, generalized world basemap.",
"documentation": "https://hub.arcgis.com/datasets/2b93b06dc0dc4e809d3c8db5cb96ba69_0/about",
"methods": 2,
"health": 60,
"popularity": 86,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 1427,
"source": "https://freepublicapis.com/arcgis-hub-world-countries-generalized"
},
{
"id": 352,
"emoji": "🇦🇷",
"title": "ArgentinaDatos API",
"description": "This API provides up-to-date information on various data points from Argentina, including historical exchange rates, financial indices, and public holidays. It enables users to access data in a RESTful manner, making it a valuable resource for developers and analysts interested in Argentine data.",
"documentation": "https://argentinadatos.com/",
"methods": 1,
"health": 95,
"popularity": 22,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 261,
"source": "https://freepublicapis.com/argentinadatos-api"
},
{
"id": 336,
"emoji": "💱",
"title": "ArgentoFX API",
"description": "API RESTful to obtain live quotations of foreign currencies in Argentina. It provides endpoints for various types of dollar quotes, as well as other currencies.",
"documentation": "https://fastapiproject-1-eziw.onrender.com/docs",
"methods": 1,
"health": 84,
"popularity": 72,
"avg_reliability": 89,
"avg_error": 6,
"avg_latency": 646,
"source": "https://freepublicapis.com/argentofx-api"
},
{
"id": 97,
"emoji": "🎨",
"title": "Art Institute of Chicago API",
"description": "The Art Institute of Chicago's API allows developers to explore and integrate the museum’s public data into their projects. This API is the same tool that powers the website, the mobile app, and many other technologies in the museum.",
"documentation": "https://api.artic.edu/docs/",
"methods": 3,
"health": 67,
"popularity": 251,
"avg_reliability": 50,
"avg_error": 20,
"avg_latency": 768,
"source": "https://freepublicapis.com/art-institute-of-chicago-api"
},
{
"id": 168,
"emoji": "🌐",
"title": "Arul's IP API",
"description": "Get your IP Address using this API",
"documentation": "https://aruljohn.com/api/",
"methods": 1,
"health": 95,
"popularity": 216,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 460,
"source": "https://freepublicapis.com/aruls-ip-api"
},
{
"id": 318,
"emoji": "🎮",
"title": "Attack on Titan API",
"description": "A RESTful API that provides access to a wide range of data related to the popular anime and manga series 'Attack on Titan'. Users can retrieve information about characters, episodes, locations, organizations, and titans, making it a valuable resource for fans and developers alike.",
"documentation": "https://www.attackontitanapi.com/",
"methods": 6,
"health": 81,
"popularity": 229,
"avg_reliability": 66,
"avg_error": 0,
"avg_latency": 699,
"source": "https://freepublicapis.com/attack-on-titan-api"
},
{
"id": 83,
"emoji": "🛣️",
"title": "Autobahn API (DE)",
"description": "OpenAPI Documentation for Autobahn GmbH's Autobahn API.",
"documentation": "https://autobahn.api.bund.dev/",
"methods": 3,
"health": 78,
"popularity": 460,
"avg_reliability": 32,
"avg_error": 0,
"avg_latency": 283,
"source": "https://freepublicapis.com/autobahn-api-de"
},
{
"id": 115,
"emoji": "🚀",
"title": "Avatar",
"description": "If you are an Avatar fan, then this api is for you. Here you can find everything from Episodes to Characters to Trivia Questions and more.",
"documentation": "https://sampleapis.com/api-list/avatar",
"methods": 3,
"health": 72,
"popularity": 413,
"avg_reliability": 33,
"avg_error": 1,
"avg_latency": 514,
"source": "https://freepublicapis.com/avatar"
},
{
"id": 295,
"emoji": "✈️",
"title": "AviationWeather Data API",
"description": "This API provides machine-to-machine access to aviation weather data, including METARs, TAFs, AIRMETs, and SIGMETs. It enables users to fetch up-to-date weather information for flight planning and operations. The service allows queries for the past 15 days of data and provides cache options for efficient data retrieval.",
"documentation": "https://aviationweather.gov/data/api/",
"methods": 1,
"health": 65,
"popularity": 160,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 880,
"source": "https://freepublicapis.com/aviationweather-data-api"
},
{
"id": 386,
"emoji": "🔰",
"title": "BIZ FACTORY",
"description": "BIZ FACTORY is a Telegram group dedicated to sharing paid methods, APIs, tricks, scripts, and coding resources. Members can access various premium tools and information for free. Join to enhance your skills and discover valuable resources.",
"documentation": "https://t.me/+NaATB64x9z4zNTZl",
"methods": 1,
"health": 80,
"popularity": 21,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 2526,
"source": "https://freepublicapis.com/biz-factory"
},
{
"id": 286,
"emoji": "🥓",
"title": "Bacon Ipsum API",
"description": "The Bacon Ipsum JSON API is a REST interface for generating meaty lorem ipsum text that can be utilized by any application. Users can specify parameters such as type of text, number of paragraphs, and format to get tailored responses.",
"documentation": "https://baconipsum.com/json-api/",
"methods": 2,
"health": 90,
"popularity": 109,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 606,
"source": "https://freepublicapis.com/bacon-ipsum-api"
},
{
"id": 110,
"emoji": "📊",
"title": "Berufsbildung Daten Exporte",
"description": "API zur Exportierung von Daten zu Lehrverträgen und Abschlüssen der Berufsbildung seit 2017, einschließlich Anzahl der Lehrverträge, neu registrierten Lehrverträgen und Abschlüssen der Qualifikationsverfahren nach Ausbildungsfeldern.",
"documentation": "https://data.tg.ch/explore/dataset/dek-abb-1/information/",
"methods": 2,
"health": 82,
"popularity": 85,
"avg_reliability": 50,
"avg_error": 0,
"avg_latency": 334,
"source": "https://freepublicapis.com/berufsbildung-daten-exporte"
},
{
"id": 384,
"emoji": "🔑",
"title": "BluTV Authentication API",
"description": "This API handles user authentication for BluTV, allowing users to log in with their credentials or via social media accounts like Facebook and Google. It also provides functionality for password recovery and user registration, enhancing security and user experience.",
"documentation": "https://www.blutv.com/int/giris",
"methods": 2,
"health": 26,
"popularity": 14,
"avg_reliability": 5,
"avg_error": 100,
"avg_latency": 0,
"source": "https://freepublicapis.com/blutv-authentication-api"
},
{
"id": 234,
"emoji": "🎮",
"title": "BoneQuest API",
"description": "The BoneQuest API provides access to episode data, allowing users to fetch details about episodes, including dialogue and metadata. It returns structured JSON responses for easy integration and use by developers.",
"documentation": "https://github.com/bonequest/api",
"methods": 1,
"health": 90,
"popularity": 70,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 720,
"source": "https://freepublicapis.com/bonequest-api"
},
{
"id": 41,
"emoji": "🎲",
"title": "Bored API",
"description": "Get random activities based on type, participants, price, and accessibility ranges.",
"documentation": "https://www.boredapi.com/api/",
"methods": 3,
"health": 25,
"popularity": 1115,
"avg_reliability": 0,
"avg_error": 100,
"avg_latency": 0,
"source": "https://freepublicapis.com/bored-api"
},
{
"id": 200,
"emoji": "🇧🇷",
"title": "Brasil API",
"description": "Acesso programático de informações relacionadas a CEPs, bancos, CNPJ, IBGE, feriados nacionais, tabela FIPE e muito mais, fornecendo endpoints modernos com baixa latência. Este projeto busca centralizar dados públicos para uma fácil e rápida consulta em aplicações.",
"documentation": "https://brasilapi.com.br/docs",
"methods": 1,
"health": 95,
"popularity": 155,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 314,
"source": "https://freepublicapis.com/brasil-api"
},
{
"id": 123,
"emoji": "💎",
"title": "Breaking Bad Quotes",
"description": "A free API to retrieve quotes from Breaking Bad.",
"documentation": "https://breakingbadquotes.xyz/",
"methods": 2,
"health": 95,
"popularity": 320,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 310,
"source": "https://freepublicapis.com/breaking-bad-quotes"
},
{
"id": 323,
"emoji": "🧘♂️",
"title": "Buddha Quotes API",
"description": "This API provides access to a collection of inspirational quotes from Buddhist figures including Buddha, Dogen, and Thich Nhat Hanh. Users can retrieve random quotes as well as specific quotes for today, making it a resource for daily wisdom and reflection.",
"documentation": "https://buddha-api.com/",
"methods": 1,
"health": 95,
"popularity": 311,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 303,
"source": "https://freepublicapis.com/buddha-quotes-api"
},
{
"id": 142,
"emoji": "😺",
"title": "CATAAS API",
"description": "A REST API to spread peace and love (or not) thanks to cats. Provides various endpoints to get random cats, cats with specific tags, cat gifs, and more. Also allows customization of cat images and retrieving cat data in JSON format.",
"documentation": "https://cataas.com/",
"methods": 2,
"health": 89,
"popularity": 526,
"avg_reliability": 78,
"avg_error": 0,
"avg_latency": 247,
"source": "https://freepublicapis.com/cataas-api"
},
{
"id": 347,
"emoji": "🚗",
"title": "CEPiK API",
"description": "The CEPiK API provides access to various datasets related to vehicles, driving licenses, permissions to drive vehicles, and statistical information about these entities. It includes methods for retrieving data about vehicles, driving licenses, permissions, and associated statistics from the national database.",
"documentation": "https://api.cepik.gov.pl/doc",
"methods": 1,
"health": 25,
"popularity": 56,
"avg_reliability": 0,
"avg_error": 100,
"avg_latency": 0,
"source": "https://freepublicapis.com/cepik-api"
},
{
"id": 223,
"emoji": "📖",
"title": "CTP API",
"description": "The CTP API provides integration methods for connecting the functionality and content of the Chinese Text Project with external web applications. It consists of a Plugin API for adding external tools and a JSON API for leveraging CTP features externally.",
"documentation": "https://ctext.org/tools/api",
"methods": 1,
"health": 60,
"popularity": 47,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 1825,
"source": "https://freepublicapis.com/ctp-api"
},
{
"id": 238,
"emoji": "🔍",
"title": "CVEDB API",
"description": "The CVEDB API provides a quick and efficient way to look up information about vulnerabilities associated with specific CVE-IDs or CPE23 strings. It allows users to access detailed data on vulnerabilities, including summaries, scores, and references to further resources.",
"documentation": "https://cvedb.shodan.io/",
"methods": 1,
"health": 94,
"popularity": 111,
"avg_reliability": 99,
"avg_error": 0,
"avg_latency": 336,
"source": "https://freepublicapis.com/cvedb-api"
},
{
"id": 94,
"emoji": "🌍",
"title": "Carbon Intensity API",
"description": "Official API for Carbon Intensity in Great Britain provided by National Grid. Allows access to current and historical carbon intensity data for different regions and time periods.",
"documentation": "https://api.carbonintensity.org.uk/",
"methods": 4,
"health": 94,
"popularity": 156,
"avg_reliability": 99,
"avg_error": 0,
"avg_latency": 413,
"source": "https://freepublicapis.com/carbon-intensity-api"
},
{
"id": 116,
"emoji": "🚀",
"title": "Cartoons",
"description": "If cartoons is what you like then boy do we have a full list of all the cartoons from the past and present and all their details including a amazingly sourced image to showcase",
"documentation": "https://sampleapis.com/api-list/cartoons",
"methods": 2,
"health": 94,
"popularity": 610,
"avg_reliability": 99,
"avg_error": 0,
"avg_latency": 428,
"source": "https://freepublicapis.com/cartoons"
},
{
"id": 2,
"emoji": "😽",
"title": "Cat Fact API",
"description": "An API that shows different Cat Facts!",
"documentation": "https://alexwohlbruck.github.io/cat-facts/docs/",
"methods": 1,
"health": 89,
"popularity": 418,
"avg_reliability": 98,
"avg_error": 0,
"avg_latency": 538,
"source": "https://freepublicapis.com/cat-fact-api"
},
{
"id": 366,
"emoji": "🚀",
"title": "CelesTrak GP Data",
"description": "CelesTrak provides access to General Perturbations (GP) orbital data, including Two-Line Element Sets (TLEs) and newer formats like XML and JSON. This data is crucial for tracking objects in space and supports various queries to retrieve specific orbital information based on catalog numbers, designators, and names.",
"documentation": "https://celestrak.org/NORAD/documentation/gp-data-formats.php",
"methods": 1,
"health": 65,
"popularity": 4,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 872,
"source": "https://freepublicapis.com/celestrak-gp-data"
},
{
"id": 177,
"emoji": "💲",
"title": "CheapShark API",
"description": "CheapShark is a price comparison website for digital PC Games, tracking prices across multiple stores including Steam, GreenManGaming, and Fanatical. The API provides developers with access to CheapShark pricing data to integrate into their own applications or websites.",
"documentation": "https://apidocs.cheapshark.com/",
"methods": 2,
"health": 65,
"popularity": 87,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 557,
"source": "https://freepublicapis.com/cheapshark-api"
},
{
"id": 303,
"emoji": "🔍",
"title": "Check e-mail or username for a data breach",
"description": "LeakCheck is a service that enables users and companies to ascertain whether their credentials have been compromised. By utilising this API, users can ascertain whether their email address or username has been involved in any data breach.",
"documentation": "https://wiki.leakcheck.io/en/api/public",
"methods": 1,
"health": 90,
"popularity": 601,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 515,
"source": "https://freepublicapis.com/check-e-mail-or-username-for-a-data-breach"
},
{
"id": 249,
"emoji": "🇨🇳",
"title": "Chinese Holiday Calendar",
"description": "This API provides a comprehensive listing of public holidays in China for the year 2024. It includes the date, name of the holiday, and whether it is an off day or not.",
"documentation": "https://api.jiejiariapi.com/v1/holidays/2024",
"methods": 1,
"health": 95,
"popularity": 193,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 309,
"source": "https://freepublicapis.com/chinese-holiday-calendar"
},
{
"id": 315,
"emoji": "🏥",
"title": "Chinese Medicine Clinics",
"description": "This API provides access to the attendance data of Chinese medicine clinics and training and research centers. Users can access datasets including annual attendances categorized by languages such as English, Traditional Chinese, and Simplified Chinese.",
"documentation": "https://data.gov.hk/en-data/dataset/hospital-hadata-service-cmctr",
"methods": 3,
"health": 85,
"popularity": 21,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 1093,
"source": "https://freepublicapis.com/chinese-medicine-clinics"
},
{
"id": 59,
"emoji": "🤣",
"title": "Chuck Norris Jokes API",
"description": "A free JSON API for hand curated Chuck Norris facts, including random jokes and categories. Also offers Slack integration and Facebook Messenger support.",
"documentation": "https://api.chucknorris.io/",
"methods": 3,
"health": 94,
"popularity": 167,
"avg_reliability": 99,
"avg_error": 0,
"avg_latency": 397,
"source": "https://freepublicapis.com/chuck-norris-jokes-api"
},
{
"id": 321,
"emoji": "📅",
"title": "Church Calendar API",
"description": "The Church Calendar API provides access to calendar data for any day, allowing users to retrieve various liturgical celebrations and details. It supports multiple languages and enables specific queries for feast names and calendar descriptions based on the selected calendar system.",
"documentation": "http://calapi.inadiutorium.cz/api-doc",
"methods": 2,
"health": 98,
"popularity": 341,
"avg_reliability": 93,
"avg_error": 0,
"avg_latency": 47,
"source": "https://freepublicapis.com/church-calendar-api"
},
{
"id": 131,
"emoji": "🚲",
"title": "CityBikes API",
"description": "API for accessing CityBikes data including network information, station details, and field filtering.",
"documentation": "https://api.citybik.es/v2/",
"methods": 2,
"health": 70,
"popularity": 329,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 140,
"source": "https://freepublicapis.com/citybikes-api"
},
{
"id": 106,
"emoji": "⚙️",
"title": "Civitai API",
"description": "REST API for accessing Civitai creators, images, models, model versions, and tags. Provides endpoints for retrieving specific resources like models by ID or model versions by hash.",
"documentation": "https://developer.civitai.com/docs/api/public-rest",
"methods": 2,
"health": 65,
"popularity": 58,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 825,
"source": "https://freepublicapis.com/civitai-api"
},
{
"id": 14,
"emoji": "🍹",
"title": "Cocktail Recipe API",
"description": "Provides access to a free cocktail recipe API with various endpoints for searching cocktails, ingredients, and more. Supports JSON format.",
"documentation": "https://www.thecocktaildb.com/api.php",
"methods": 3,
"health": 86,
"popularity": 841,
"avg_reliability": 66,
"avg_error": 0,
"avg_latency": 300,
"source": "https://freepublicapis.com/cocktail-recipe-api"
},
{
"id": 114,
"emoji": "☕️",
"title": "Coffee",
"description": "Basic list of descriptions and ingredients for popular coffee drinks",
"documentation": "https://sampleapis.com/api-list/coffee",
"methods": 2,
"health": 94,
"popularity": 876,
"avg_reliability": 98,
"avg_error": 0,
"avg_latency": 405,
"source": "https://freepublicapis.com/coffee"
},
{
"id": 113,
"emoji": "☕",
"title": "Coffee API",
"description": "Start your day with a lovely coffee~ Provides access to a collection of 1257 coffee images. Users can request a random coffee image in JSON format.",
"documentation": "https://coffee.alexflipnote.dev/",
"methods": 1,
"health": 95,
"popularity": 527,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 325,
"source": "https://freepublicapis.com/coffee-api"
},
{
"id": 35,
"emoji": "💰",
"title": "CoinGecko API",
"description": "Powerful API for cryptocurrency data including real-time prices, market data, NFT base prices, trading volume, trading pairs, metadata, historical data, and more. Trusted by thousands of developers in the industry.",
"documentation": "https://www.coingecko.com/de/api",
"methods": 2,
"health": 82,
"popularity": 526,
"avg_reliability": 50,
"avg_error": 0,
"avg_latency": 408,
"source": "https://freepublicapis.com/coingecko-api"
},
{
"id": 71,
"emoji": "💰",
"title": "Coinpaprika API",
"description": "Provides cryptocurrency market data including prices, market cap, volume, and more. Access historical data and real-time updates.",
"documentation": "https://api.coinpaprika.com/#section/Introduction",
"methods": 2,
"health": 82,
"popularity": 325,
"avg_reliability": 50,
"avg_error": 0,
"avg_latency": 235,
"source": "https://freepublicapis.com/coinpaprika-api"
},
{
"id": 299,
"emoji": "🇨🇴",
"title": "Colombia Public API",
"description": "API-Colombia is a public RESTful API that provides access to a wide range of data about Colombia, including information on departments, regions, and tourist attractions. Users can explore public information without the need for authentication, making it easy to discover diverse aspects of the country.",
"documentation": "https://api-colombia.com/",
"methods": 2,
"health": 59,
"popularity": 10,
"avg_reliability": 0,
"avg_error": 1,
"avg_latency": 1105,
"source": "https://freepublicapis.com/colombia-public-api"
},
{
"id": 201,
"emoji": "📊",
"title": "Colorado Information Marketplace",
"description": "Explore a wide range of public datasets and resources from the Colorado Information Marketplace, including information on government revenue and expenditures, transportation, demographics, business, and more. Access charts, maps, datasets, and documents to gain insights into various aspects of life in Colorado. A valuable tool for researchers, businesses, and the general public seeking data-driven insights.",
"documentation": "https://data.colorado.gov/browse",
"methods": 1,
"health": 65,
"popularity": 22,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 879,
"source": "https://freepublicapis.com/colorado-information-marketplace"
},
{
"id": 382,
"emoji": "📊",
"title": "Company Enrich API",
"description": "The Company Enrich API provides businesses with enriched, actionable insights about companies. It offers endpoints for company enrichment, search, and discovering similar companies, enabling users to make data-driven decisions and streamline their prospecting efforts.",
"documentation": "https://docs.companyenrich.com",
"methods": 1,
"health": 59,
"popularity": 12,
"avg_reliability": 95,
"avg_error": 68,
"avg_latency": 312,
"source": "https://freepublicapis.com/company-enrich-api"
},
{
"id": 298,
"emoji": "🌦️",
"title": "Console Weather Forecast",
"description": "wttr.in is a console-oriented weather forecast service that supports various information representation methods like terminal-oriented ANSI-sequences for console HTTP clients (curl, httpie, or wget), HTML for web browsers, or PNG for graphical viewers.",
"documentation": "https://github.com/chubin/wttr.in",
"methods": 1,
"health": 55,
"popularity": 86,
"avg_reliability": 0,
"avg_error": 0,
"avg_latency": 2262,
"source": "https://freepublicapis.com/console-weather-forecast"
},
{
"id": 45,
"emoji": "⚙️",
"title": "Corporate Bullshit Generator",
"description": "This API generates random corporate bullshit phrases that can be used in applications to mimic business jargon. It adds a humorous touch to the often vague and buzzword-filled corporate world. CORS enabled.",
"documentation": "https://github.com/sameerkumar18/corporate-bs-generator-api",
"methods": 1,
"health": 95,
"popularity": 1224,
"avg_reliability": 100,
"avg_error": 0,
"avg_latency": 486,
"source": "https://freepublicapis.com/corporate-bullshit-generator"
},
{
"id": 276,