-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapis.json
executable file
·2902 lines (2902 loc) · 145 KB
/
apis.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
{
"name": "Streadata.io API Gallery - Data",
"description": "This is a repository of data APIs, self-contained as a Github repository, with HTML and YAML representations of the APIs and their surrounding operations.",
"image": "http://template.streamdata.gallery/assets/data.png",
"created": "2018-02-24",
"modified": "2018-08-27",
"url": "http://data.streamdata.gallery/apis.json",
"specificationVersion": "0.14",
"apis": [
{
"name": "Splunk",
"x-api-slug": "splunk",
"description": "Splunk Inc. turns machine data into answers with the leading platform to tackle the toughest IT, IoT and security challenges. Use Splunk to search, monitor, analyze and visualize machine data.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/10-splunk-dev.jpg",
"humanURL": "http://splunk.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/splunk/openapi.md"
}
]
},
{
"name": "Socrata",
"x-api-slug": "socrata",
"description": "Join more than 1,000 government organizations using Socrata to put their data online, share insights, and make data-driven decisions.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/24-socrata.jpg",
"humanURL": "http://socrata.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/socrata/openapi.md"
}
]
},
{
"name": "Firebase",
"x-api-slug": "firebase",
"description": "Firebase is a mobile platform that gives developers the tools and infrastructure to build better apps and grow successful businesses.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/firebase-logo.png",
"humanURL": "https://Firebase.google.com",
"baseURL": "https://{project_id].firebaseio.co}//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/firebase/openapi.md"
}
]
},
{
"name": "Factual",
"x-api-slug": "factual",
"description": "Factual is pioneering how the world uses data to power mobile marketing, digital consumer products, mobile applications and real world analytics.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/139-factual.jpg",
"humanURL": "http://www.factual.com/",
"baseURL": "https://api.v3.factual.com//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/factual/openapi.md"
}
]
},
{
"name": "World Bank Data",
"x-api-slug": "world-bank-data",
"description": "With 189 member countries, the World Bank Group is a unique global partnership fighting poverty worldwide through sustainable solutions.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/146-world-bank-data.jpg",
"humanURL": "http://data.worldbank.org/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/world-bank-data/openapi.md"
}
]
},
{
"name": "Hootsuite",
"x-api-slug": "hootsuite",
"description": "Enhance your social media management with Hootsuite, the leading social media dashboard. Manage multiple networks and profiles and measure your campaign results.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/160-hootsuite.jpg",
"humanURL": "",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/hootsuite/openapi.md"
}
]
},
{
"name": "BreweryDB",
"x-api-slug": "brewerydb",
"description": "An open library of breweries and beers.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/164-brewerydb.jpg",
"humanURL": "http://www.brewerydb.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/brewerydb/openapi.md"
}
]
},
{
"name": "Datameer",
"x-api-slug": "datameer",
"description": "Datameer delivers an agile, unified & governed approach to managing data for analytics. Datameer???s modern analytic data platform transforms complex, diverse data into a governed enterprise-wide network of data pipelines that feed your analytics initiat...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/176-datameer.jpg",
"humanURL": "http://www.datameer.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/datameer/openapi.md"
}
]
},
{
"name": "DataSift",
"x-api-slug": "datasift",
"description": "DataSift is the leader in Human Data Intelligence. The only independent provider of social data, blog data and news data.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/177-datasift-developer.jpg",
"humanURL": "http://dev.datasift.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/datasift/openapi.md"
}
]
},
{
"name": "FullContact",
"x-api-slug": "fullcontact",
"description": "Build a clearer picture of your customers in minutes with our data-focused APIs. Manage your personal or teams contacts with our contact apps.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/205-fullcontact.jpg",
"humanURL": "http://fullcontact.com",
"baseURL": "https://api.fullcontact.com//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/fullcontact/openapi.md"
}
]
},
{
"name": "The Guardian",
"x-api-slug": "the-guardian",
"description": "The Guardian is a British national daily newspaper which has grown into a national paper associated with a complex organisational structure and an international multimedia and web presence. The Guardian provides API access to articles accessible by tag and section, and a suite of open source data and tools. The Guardian makes content accessible to increase traffic, brand awareness, and as a marketing vehicle, including partnership opportunities via platform program.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/the-guardian-logo.png",
"humanURL": "http://www.guardian.co.uk/open-platform",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/the-guardian/openapi.md"
}
]
},
{
"name": "US Census Bureau",
"x-api-slug": "us-census-bureau",
"description": "How Our Data are Used: - to determine the distribution of Congressional seats to states-- o mandated by the U.S. Constitution o used to apportion seats in the U.S. House of Representatives o used to define legislat...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/272-us-census-bureau.jpg",
"humanURL": "http://www.census.gov/developers/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/us-census-bureau/openapi.md"
}
]
},
{
"name": "Xignite",
"x-api-slug": "xignite",
"description": "Financial market data on-demand. Xignite financial Web services help build smarter websites and applications in minutes with zero up-front investment.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/xignite-logo.png",
"humanURL": "http://www.xignite.com",
"baseURL": "https://www.xignite.com/xVWAP.json/XigniteVWAP",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/xignite/openapi.md"
}
]
},
{
"name": "Data8 Ltd",
"x-api-slug": "data8-ltd",
"description": "We believe that clean accurate data is the key to every successful business and this has been our philosophy since 2005. This philosophy has enabled us to become the leading total data quality solutions provider by simplifying and automating data management processes, so customers can completely trust their data.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/d8logo_trans.png",
"humanURL": "http://www.data-8.co.uk",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/data8-ltd/openapi.md"
}
]
},
{
"name": "StrikeIron",
"x-api-slug": "strikeiron",
"description": "StrikeIron is the leader in Data-as-a-Service (DaaS), delivering data quality and communications solutions via our cloud platform IronCloud. We provide address verification, email verification, phone validation, phone append, SMS text messaging, and sales tax solutions to customers in a variety of markets. Our solutions are delivered as Web services that can be easily integrated into any application or system. Additionally, our solutions are pre-integrated into leading platforms like: Salesforce.com, Magento, Informatica, Oracle CRM On-Demand, and more.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/372-informatica.jpg",
"humanURL": "http://www.informatica.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/strikeiron/openapi.md"
}
]
},
{
"name": "Server Density",
"x-api-slug": "server-density",
"description": "SaaS infrastructure monitoring. Dashboards, graphs and alerts to help you improve performance and maintain uptime. Organizer of @humanops",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/475-server-density.jpg",
"humanURL": "https://www.serverdensity.com",
"baseURL": "://api.serverdensity.io./",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/server-density/openapi.md"
}
]
},
{
"name": "Factolex",
"x-api-slug": "factolex",
"description": "Factolex is a community-powered fact lexicon going straight to the point.Users can build their own lexicon by selecting the facts most relevant to them, and, extend the knowledge by adding new terms and facts. The Factolex API follows a simple REST approach. Parameters for methods are set through URL parameters.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/factolex-logo.gif",
"humanURL": "http://factolex.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/factolex/openapi.md"
}
]
},
{
"name": "GoodData",
"x-api-slug": "gooddata",
"description": "GoodData goes beyond traditional business intelligence and analytics delivering insights at the moment of action to drive better business outcomes.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/601-gooddata.jpg",
"humanURL": "http://gooddata.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/gooddata/openapi.md"
}
]
},
{
"name": "Urban Mapping",
"x-api-slug": "urban-mapping",
"description": "Crafting commerce through customer information management, location intelligence, customer engagement, shipping, mailing & ecommerce. Customer Service @PBcares.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/613-urban-mapping.jpg",
"humanURL": "http://developer.urbanmapping.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/urban-mapping/openapi.md"
}
]
},
{
"name": "WeoGeo Status",
"x-api-slug": "weogeo-status",
"description": "Positioning-centric information is changing the way people, businesses and governments work throughout the world. By applying Trimbles advanced positioning solutions, productivity increases and safety improvements are being realized. Though best kn...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/674-weogeo-status.jpg",
"humanURL": "http://www.weogeo.com/developer_doc/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/weogeo-status/openapi.md"
}
]
},
{
"name": "Atlassian",
"x-api-slug": "atlassian",
"description": "Millions of users globally rely on Atlassian products every day for improving software development, project management, collaboration, and code quality.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/691-atlassian.jpg",
"humanURL": "http://atlassian.com/",
"baseURL": "https:////",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/atlassian/openapi.md"
}
]
},
{
"name": "EPA Envirofacts",
"x-api-slug": "epa-envirofacts",
"description": "EPAs purpose is to ensure that: - all Americans are protected from significant risks to human health and the environment where they live, learn and work; - national efforts to reduce environmental risk are based on the best available scientifi...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/773-epa-envirofacts.jpg",
"humanURL": "http://www.epa.gov",
"baseURL": "https://ofmpub.epa.gov//echo",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/epa-envirofacts/openapi.md"
}
]
},
{
"name": "Instructure",
"x-api-slug": "instructure",
"description": "Instructure makes software that makes smarter people. Products include Canvas LMS, Bridge and Canvas Network.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/820-instructure.jpg",
"humanURL": "http://instructure.com",
"baseURL": "https://canvas.instructure.com//api/v1",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/instructure/openapi.md"
}
]
},
{
"name": "Junar.com",
"x-api-slug": "junar-com",
"description": "Fast, easy, and affordable way to transform data into resources that businesses, governments, NGOs, academia and citizens can use.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/827-junar-com.jpg",
"humanURL": "http://www.junar.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/junar-com/openapi.md"
}
]
},
{
"name": "Plings",
"x-api-slug": "plings",
"description": "",
"image": "",
"humanURL": "http://www.plings.info/wiki/index.php/Main_Page",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/plings/openapi.md"
}
]
},
{
"name": "DataONE",
"x-api-slug": "dataone",
"description": "Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and sec...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1002-dataone.jpg",
"humanURL": "https://www.dataone.org/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/dataone/openapi.md"
}
]
},
{
"name": "OpenCorporates",
"x-api-slug": "opencorporates",
"description": "Free and Open Company Data on 135 million companies and corporations in over 125 jurisdictions, including US, UK, Switzerland, Panama...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1108-opencorporates.jpg",
"humanURL": "http://opencorporates.com",
"baseURL": "://api.opencorporates.com/v0.4/",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/opencorporates/openapi.md"
}
]
},
{
"name": "Simperium",
"x-api-slug": "simperium",
"description": "Sync instantly across iOS, Android, the web and more.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1234-simperium.jpg",
"humanURL": "https://simperium.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/simperium/openapi.md"
}
]
},
{
"name": "IBM",
"x-api-slug": "ibm",
"description": "IBM is a global technology and innovation company headquartered in Armonk, NY. It is the largest technology and consulting employer in the world, with more than 400,000 employees serving clients in 170 countries. IBM offers a wide range of technology and consulting services; a broad portfolio of middleware for collaboration, predictive analytics, software development and systems management; and the worlds most advanced servers and supercomputers. Utilizing its business consulting, technology and R&D expertise, IBM helps clients become smarter as the planet becomes more digitally interconnected.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1255-cloudant.jpg",
"humanURL": "https://ibm.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/ibm/openapi.md"
}
]
},
{
"name": "Clever",
"x-api-slug": "clever",
"description": "With Clever, learning applications get a platform to easily connect with schools and school districts have a central location to manage their technology.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1298-clever.jpg",
"humanURL": "https://getclever.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/clever/openapi.md"
}
]
},
{
"name": "Bugswarm",
"x-api-slug": "bugswarm",
"description": "Acquire data from and control embedded devices using JavaScript or plain old HTTP. Combine multiple resources together to create a swarm. Once a member of a swarm, a resource can communicate and share data with other resources in that swarm. Control the level of access a resource has to a swarm. Grant a resource permission to produce data, consume data, or do both. Invite another users resources into your swarms and accept invitations to place your resources in somebody elses swarms. Share your data easily and securely.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/bugswarm-logo.png",
"humanURL": "http://developer.bugswarm.net/index.html",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/bugswarm/openapi.md"
}
]
},
{
"name": "DataKC",
"x-api-slug": "datakc",
"description": "Crowdtilt allows groups to pool funds for objectives in a simple, social, and frictionless way online.We all love doing things as a group. Like with a lot of experiences, it’s not what you do ??? it’s the people you do it with that matters more.At Crowdtilt, we’re trying to make it easier for groups to do things together. Whether it’s a party-bus to the next Phish show or pooling money for a cause you know your close friends are passionate about ??? we just want to make that process of grouping those funds as easy as possible.",
"image": "",
"humanURL": "http://www.datakc.org",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/datakc/openapi.md"
}
]
},
{
"name": "123FormBuilder",
"x-api-slug": "123formbuilder",
"description": "Create free web forms for your website within minutes, build complex workflows, sell online and more. With the simple drag & drop interface, building an online form, survey, poll or quiz is a breeze. Sign up for free to get started!",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1638-123contactform.jpg",
"humanURL": "http://www.123formbuilder.com",
"baseURL": "https://api.123contactform.com//v2",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/123formbuilder/openapi.md"
}
]
},
{
"name": "Import.io",
"x-api-slug": "import-io",
"description": "Home Page - Import.io - Web Scraping, Data Extraction and Web Harvesting",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1728-import-io.jpg",
"humanURL": "https://www.import.io/",
"baseURL": "https://schedule.import.io//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/import-io/openapi.md"
}
]
},
{
"name": "Hatebase",
"x-api-slug": "hatebase",
"description": "Worlds largest and most authoritative structured repository of hate speech",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/1869-hatebase.jpg",
"humanURL": "http://www.hatebase.org",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/hatebase/openapi.md"
}
]
},
{
"name": "Ragic",
"x-api-slug": "ragic",
"description": "Design powerful Web databases for your business with simple Excel-like interface. Business data management solution that just works.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/2077-ragic.jpg",
"humanURL": "http://www.ragic.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/ragic/openapi.md"
}
]
},
{
"name": "Dronestream",
"x-api-slug": "dronestream",
"description": "Real-time and historical data about every reported covert United States drone strike. A publicly-accessible API. With a simple browser request, designers and developers can build data visualizations about covert war. Stay up to date on the latest drone attacks being carried out in Pakistan, Yemen, and Somalia. Researchers and legal scholars can look for a specific drone strike or begin to analyze historical trends.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/Dronestream.png",
"humanURL": "http://dronestre.am/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/dronestream/openapi.md"
}
]
},
{
"name": "Primal",
"x-api-slug": "primal",
"description": "Primals technology is an artificial intelligence that synthesizes semantic data in real-time. Primals AI produces semantic representations as interest graphs, powering automated and personalized computing experiences.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/2163-primal.jpg",
"humanURL": "https://about.primal.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/primal/openapi.md"
}
]
},
{
"name": "OpenDataSoft",
"x-api-slug": "opendatasoft",
"description": "OpenDataSoft is a cloud-based turnkey platform for data publishing and API management. Its interface is intuitively designed to empower anyone, regardless of technical skills, to upload easy-to-understand Open Data, or to even share data within an admi...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/2716-opendatasoft.jpg",
"humanURL": "http://opendatasoft.com",
"baseURL": "https://public.opendatasoft.com//api/v2",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/opendatasoft/openapi.md"
}
]
},
{
"name": "Aculocity",
"x-api-slug": "aculocity",
"description": "Aculocity is a software development and data management company based in Chicago. Aculocity specializes in custom software development, data integration, erp integration and technology management with a vast amount of exeperience in th...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/3715-aculocity.jpg",
"humanURL": "http://aculocity.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/aculocity/openapi.md"
}
]
},
{
"name": "Acxiom",
"x-api-slug": "acxiom",
"description": "Acxioms data and technology transform marketing giving our clients the power to manage audiences, personalize customer experiences and create profitable customer relationships.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/10134-acxiom.jpg",
"humanURL": "http://www.acxiom.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/acxiom/openapi.md"
}
]
},
{
"name": "Altos Data Geeks",
"x-api-slug": "altos-data-geeks",
"description": "We track 100 million properties across the U.S. so you (and your clients) can stay ahead of the curve.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/10159-altos-data-geeks.jpg",
"humanURL": "http://www.altosresearch.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/altos-data-geeks/openapi.md"
}
]
},
{
"name": "Energy Information Administration",
"x-api-slug": "energy-information-administration",
"description": "The U.S. Energy Information Administration (EIA) is a principal agency of the U.S. Federal Statistical System responsible for collecting, analyzing, and disseminating energy information to promote sound policymaking, efficient markets, and public understanding of energy and its interaction with the economy and the environment. EIA programs cover data on coal, petroleum, natural gas, electric, renewable and nuclear energy. EIA is part of the U.S. Department of Energy.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/EIA_logo.jpg",
"humanURL": "http://www.eia.gov",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/energy-information-administration/openapi.md"
}
]
},
{
"name": "Bureau of Labor Statistics",
"x-api-slug": "bureau-of-labor-statistics",
"description": "The Bureau of Labor Statistics (BLS) is a unit of the United States Department of Labor. It is the principal fact-finding agency for the U.S. government in the broad field of labor economics and statistics and serves as a principal agency of the U.S. Federal Statistical System. The BLS is a governmental statistical agency that collects, processes, analyzes, and disseminates essential statistical data to the American public, the U.S. Congress, other Federal agencies, State and local governments, business, and labor representatives. The BLS also serves as a statistical resource to the Department of Labor, and conducts research into how much families need to earn to be able to enjoy a decent standard of living.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/400px-Bureau_of_labor_statistics_logo.svg.png",
"humanURL": "http://www.bls.gov",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/bureau-of-labor-statistics/openapi.md"
}
]
},
{
"name": "GlobalChange.gov",
"x-api-slug": "globalchange-gov",
"description": "The U.S. Global Change Research Program (USGCRP) was established by Presidential Initiative in 1989 and mandated by Congress in the Global Change Research Act (GCRA) of 1990 to “assist the Nation and the world to understand, assess, predict, and respond to human-induced and natural processes of global change.”",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/global-change-gov.png",
"humanURL": "http://globalchange.gov/",
"baseURL": "https://data.globalchange.gov//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/globalchange-gov/openapi.md"
}
]
},
{
"name": "DataHero",
"x-api-slug": "datahero",
"description": "DataHero is an online data visualization and data dashboard software platform that makes it easy to share insights with your team and your clients.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/11275-datahero.jpg",
"humanURL": "https://datahero.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/datahero/openapi.md"
}
]
},
{
"name": "Development Seed",
"x-api-slug": "development-seed",
"description": "We help empower citizens and organizations with tools and data to solve complex issues and make better decisions. As a small team we have implemented some of the largest developmentprojects. Our agile approach has been refinedover yearsof experience building open source and highly performant web applications.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/DevelopmentSeed.png",
"humanURL": "http://www.developmentseed.org/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/development-seed/openapi.md"
}
]
},
{
"name": "DataMade",
"x-api-slug": "datamade",
"description": "DataMade is a civic technology company. We build open source technology using open data to empower journalists, researchers, governments and advocacy organizations. DataMade was born out of Chicagos Open Government community. In 2011, Derek and Forest started working on civic technology as volunteers of Open City. At nights and over weekends, theyve helped make civic apps like Chicago Lobbyists, Clear Streets, and Second City Zoning.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/DataMade.png",
"humanURL": "http://datamade.us/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/datamade/openapi.md"
}
]
},
{
"name": "CKAN",
"x-api-slug": "ckan",
"description": "The #opensource #opendata platform. Powering http://t.co/GdXNmN65Sf, http://t.co/9O9OJjJnJd & portals around the world: http://t.co/YEGynxgDgM. Join us!",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/11383-ckan.jpg",
"humanURL": "http://ckan.org/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/ckan/openapi.md"
}
]
},
{
"name": "Knoema",
"x-api-slug": "knoema",
"description": "Knoema is the free to use public and open data platform for users with interests in statistics and data analysis, visual storytelling and making infographics and data-driven presentations",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/knoema-logo.jpg",
"humanURL": "https://knoema.com",
"baseURL": "http://knoema.com//api/1.0",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/knoema/openapi.md"
}
]
},
{
"name": "Quandl",
"x-api-slug": "quandl",
"description": "Quandl delivers financial data to users in the format they want. Access thousands of databases via the Quandl API or in your tool of choice.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/11440-quandl.jpg",
"humanURL": "http://quandl.com",
"baseURL": "https://www.quandl.com//api/v3",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/quandl/openapi.md"
}
]
},
{
"name": "Dat ",
"x-api-slug": "dat-",
"description": "Dat is a grant funded, open source project housed in the US Open Data Institute. While dat is a general purpose tool, we have a focus on open science use cases. The high level goal of the dat project is to build a streaming interface between every database and file storage backend in the world. By building tools to build and share data pipelines we aim to bring to data a style of collaboration similar to what git brings to source code.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/dat.png",
"humanURL": "http://dat-data.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/dat-/openapi.md"
}
]
},
{
"name": "Taxamo",
"x-api-slug": "taxamo",
"description": "We make global digital VAT/GST compliance possible. #DigitalTax #DigiTax #TaxTrends",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/18644-taxamo.jpg",
"humanURL": "https://www.taxamo.com/",
"baseURL": "https://api.taxamo.com//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/taxamo/openapi.md"
}
]
},
{
"name": "DataValidation",
"x-api-slug": "datavalidation",
"description": "A complete solution for email marketers and ESPs. The most comprehensive API for realtime email validation, email list validation, and automating daily list maintenance with Email Assurance. Check email list quality, or monitor list quality over time with free vetting tokens included with every plan. Analyze the quality of an email address at the point of signup. Our API can handle extremely high volume. Clean email lists quickly and receive comprehensive email deliverability data on each email address. Your entire list is returned to you with Email Assurance grades ranging from A+ to F. Automate your email list maintenance with our API. Protect your deliverability by integrating the complete Email Assurance solution. Set up daily list monitoring, weekly list maintenance, and the realtime email validation behind your webform. We analyze all email data daily, ensuring that your email list is always ready for deployment.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/data-validation-api.png",
"humanURL": "https://developer.datavalidation.com",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/datavalidation/openapi.md"
}
]
},
{
"name": "Blizzard",
"x-api-slug": "blizzard",
"description": "This is the documentation for the RESTful APIs exposed through the World of Warcraft community site as a service to the World of Warcraft community.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/Blizzard_Entertainment_Logo.svg.png",
"humanURL": "http://battle.net",
"baseURL": "https://us.battle.net//api/wow/",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/blizzard/openapi.md"
}
]
},
{
"name": "Apache Avro",
"x-api-slug": "apache-avro",
"description": "Apache Avro is a data serialization system. Avro relies on schemas. When Avro data is read, the schema used when writing it is always present. This permits each datum to be written with no per-value overheads, making serialization both fast and small. This also facilitates use with dynamic, scripting languages, since data, together with its schema, is fully self-describing.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/apache-avro.png",
"humanURL": "https://avro.apache.org/docs/current/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/apache-avro/openapi.md"
}
]
},
{
"name": "Apache Flink",
"x-api-slug": "apache-flink",
"description": "Flink’s core is a streaming dataflow engine that provides data distribution, communication, and fault tolerance for distributed computations over data streams. Flink includes several APIs for creating applications that use the Flink engine. You can integrate Flink easily with other well-known open source systems both for data input and output as well as deployment.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/apache-fink.jpeg",
"humanURL": "https://flink.apache.org/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/apache-flink/openapi.md"
}
]
},
{
"name": "Open Eligibility",
"x-api-slug": "open-eligibility",
"description": "The Open Eligibility Project is a collaborative for a better human service taxonomy. The taxonomy is a simple way to categorize human services and human situations. With these common categories, we, as service providers, navigators, and people in need, can find human services quickly and easily. This is an API setup and operated by API Evangelist to support the evolution of the specification, and use across many different human services API projects.",
"image": "https://s3.amazonaws.com/kinlane-productions/adopta-agency/adopta-agency-primary.png",
"humanURL": "https://about.auntbertha.com/openeligibility",
"baseURL": "://http://api.open.eligibility.adopta.agency//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/open-eligibility/openapi.md"
}
]
},
{
"name": "Scribe",
"x-api-slug": "scribe",
"description": "Scribe Software Corporation provides cost-effective, no-coding solutions that can be used as the only tool businesses need to integrate virtually any application, data source or Software as a Service (SaaS) platform.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/scribe-soft-logo.jpg",
"humanURL": "http://www.scribesoft.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/scribe/openapi.md"
}
]
},
{
"name": "Open Data Commons",
"x-api-slug": "open-data-commons",
"description": "Open Data Commons exists to provide legal solutions for open data. In March 2008 it launched the first ever open data license: the Public Domain Dedication and License (PDDL). Open Data Commons is an Open Knowledge Foundation project run by its Advisory Council and like the Foundation is a not-for-profit effort working for the benefit of the general open knowledge community.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/open-data-commons.png",
"humanURL": "http://opendatacommons.org/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/open-data-commons/openapi.md"
}
]
},
{
"name": "HERE",
"x-api-slug": "here",
"description": "HERE Technologies enables people, enterprises and cities around the world to harness the power of location and create innovative solutions that make our lives safer and more efficient. We transform information from devices, vehicles, infrastructure and...",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/20089-here-maps.jpg",
"humanURL": "https://developer.here.com",
"baseURL": "https://weather.cit.api.here.com//weather/1.0",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/here/openapi.md"
}
]
},
{
"name": "Apollo",
"x-api-slug": "apollo",
"description": "Apollo is an incrementally-adoptable data stack that manages the flow of data between clients and backends. Based on GraphQL, it gives you a principled, unified, and scalable API for developing modern apps on top of services.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/apollo-stack.png",
"humanURL": "https://www.apollographql.com/",
"baseURL": "https:///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/apollo/openapi.md"
}
]
},
{
"name": "BigCommerce",
"x-api-slug": "bigcommerce",
"description": "BigCommerce is the world’s leading cloud ecommerce platform for established and rapidly-growing businesses. Combining enterprise functionality, an open architecture and app ecosystem, and market-leading performance, BigCommerce enables businesses to grow online sales with 80% less cost, time and complexity than on-premise software. BigCommerce powers B2B and B2C ecommerce for more than 60,000 SMBs, 2,000+ mid-market businesses, more than 25 Fortune 1000 companies, and industry-leading brands.",
"image": "",
"humanURL": "http://bigcommerce.com",
"baseURL": "https://api.bigcommerce.com//stores",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/bigcommerce/openapi.md"
}
]
},
{
"name": "Capital One DevExchange",
"x-api-slug": "capital-one-devexchange",
"description": "What unites us all is a desire to create better end customer experiences. Were building a full suite of tools and technology that make essential things in peoples everyday life – money, finances, identity – simpler for you. Now is the time to join our beta program, and help us shape the future.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/capitalone-devexchange.png",
"humanURL": "http://capitalone.com",
"baseURL": "https://api.reimaginebanking.com//",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/capital-one-devexchange/openapi.md"
}
]
},
{
"name": "New Relic",
"x-api-slug": "new-relic",
"description": "New Relic???s digital intelligence platform lets developers, ops, and tech teams measure and monitor the performance of their applications and infrastructure.",
"image": "http://kinlane-productions.s3.amazonaws.com/screen-capture-api/22963-new-relic.jpg",
"humanURL": "https://newrelic.com/",
"baseURL": "https:///v2/",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/new-relic/openapi.md"
}
]
},
{
"name": "AWS CloudWatch",
"x-api-slug": "aws-cloudwatch",
"description": "Amazon CloudWatch is a monitoring service for AWS cloud resources and the applications you run on AWS. You can use Amazon CloudWatch to collect and track metrics, collect and monitor log files, set alarms, and automatically react to changes in your AWS resources. Amazon CloudWatch can monitor AWS resources such as Amazon EC2 instances, Amazon DynamoDB tables, and Amazon RDS DB instances, as well as custom metrics generated by your applications and services, and any log files your applications generate. You can use Amazon CloudWatch to gain system-wide visibility into resource utilization, application performance, and operational health. You can use these insights to react and keep your application running smoothly.",
"image": "http://kinlane-productions.s3.amazonaws.com/api-evangelist-site/company/logos/Management-Tools_AmazonCloudWatch.png",
"humanURL": "https://aws.amazon.com/cloudwatch/",
"baseURL": ":///",
"tags": "Data",
"properties": [
{
"type": "x-openapi-spec",
"url": "https://raw.githubusercontent.com/streamdata-gallery-topics/data/master/_listings/aws-cloudwatch/openapi.md"
}
]
},
{