-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1007 lines (989 loc) · 70 KB
/
index.html
File metadata and controls
1007 lines (989 loc) · 70 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Support - API Evangelist</title>
<meta name="description" content="An index and topic collection covering customer support, help desk, ticketing, knowledge base, and live chat APIs. Customer support platforms power the interfaces and back-office systems that companies use to receive, route, resolve, and learn from customer inquiries across email, chat, phone, socia">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://support.apievangelist.com/">
<!-- Open Graph -->
<meta property="og:url" content="https://support.apievangelist.com/">
<meta property="og:type" content="website">
<meta property="og:title" content="Support">
<meta property="og:site_name" content="API Evangelist">
<meta property="og:description" content="An index and topic collection covering customer support, help desk, ticketing, knowledge base, and live chat APIs. Customer support platforms power the interfaces and back-office systems that companies use to receive, route, resolve, and learn from customer inquiries across email, chat, phone, socia">
<meta property="og:image" content="https://support.apievangelist.com/icon.png">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Support">
<meta name="twitter:description" content="An index and topic collection covering customer support, help desk, ticketing, knowledge base, and live chat APIs. Customer support platforms power the interfaces and back-office systems that companies use to receive, route, resolve, and learn from customer inquiries across email, chat, phone, socia">
<meta name="twitter:image" content="https://support.apievangelist.com/icon.png">
<link rel="shortcut icon" href="https://kinlane-productions2.s3.us-east-1.amazonaws.com/api-evangelist-logos/api-evangelist-logo-butterfly-transparent.png" type="image/png">
<!-- Bootstrap 5.3 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<!-- Material Symbols -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0">
<!-- Inter font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--ae-green: #3d8b37;
--ae-dark: #1a1a2e;
--ae-light: #f8f9fa;
--ae-accent: #6c9e3a;
}
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #333; }
.navbar-ae { background-color: #fff; border-bottom: 1px solid #e9ecef; }
.navbar-ae .navbar-brand img { height: 40px; }
.navbar-ae .nav-link { color: #495057; font-size: 0.9rem; font-weight: 500; }
.navbar-ae .nav-link:hover, .navbar-ae .nav-link.active { color: var(--ae-green); }
.text-emphasis { color: var(--ae-green) !important; }
.hero { background: linear-gradient(135deg, #f7faf6 0%, #eaf3e6 100%); border-bottom: 1px solid #e9ecef; }
.hero h1 { font-size: 2rem; font-weight: 700; }
.section-title { font-size: 1.25rem; font-weight: 600; display:flex; align-items:center; }
.section-title .material-symbols-outlined { color: var(--ae-green); margin-right: 0.5rem; }
.post-item { border-bottom: 1px solid #f0f0f0; padding: 0.9rem 0; }
.post-item:last-child { border-bottom: none; }
.post-item h3 a { color: #212529; text-decoration: none; font-size: 1rem; font-weight: 600; line-height: 1.35; }
.post-item h3 a:hover { color: var(--ae-green); }
.post-item .post-meta { font-size: 0.78rem; color: #6c757d; margin-top: 0.15rem; }
.post-tag { font-size: 0.78rem; color: var(--ae-green); text-decoration: none; }
.post-tag:hover { text-decoration: underline; }
.footer-ae { border-top: 1px solid #e9ecef; font-size: 0.85rem; color: #6c757d; }
.card { border: 1px solid #e9ecef; border-radius: 0.5rem; }
.list-group-item { border-color: #f0f0f0; }
.list-group-item:hover { background-color: #f9fbf8; }
a { color: var(--ae-green); }
</style>
</head>
<body>
<!-- Top Nav -->
<nav class="navbar navbar-expand-lg navbar-ae sticky-top">
<div class="container-fluid px-3 px-lg-4">
<a class="navbar-brand d-flex align-items-center" href="https://apievangelist.com">
<img src="https://kinlane-productions2.s3.us-east-1.amazonaws.com/api-evangelist-logos/api-evangelist-logo-butterfly-transparent.png" alt="API Evangelist" style="height: 55px;">
</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ms-auto align-items-center gap-1">
<li class="nav-item"><a class="nav-link" href="https://apievangelist.com/2026/">Stories</a></li>
<li class="nav-item"><a class="nav-link" href="https://conversations.apievangelist.com">Conversations</a></li>
<li class="nav-item"><a class="nav-link" href="https://apievangelist.com/about/api-evangelist">About</a></li>
<li class="nav-item"><a class="nav-link" href="https://apievangelist.com/contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Naftiko Banner -->
<div class="alert alert-success border-0 rounded-0 mb-0 py-2" role="alert" style="text-align: center;">
<a href="https://naftiko.io" target="_blank" style="text-decoration: none; color: inherit; font-weight: 500;">Turn your existing data & APIs into governed capabilities for AI →</a>
</div>
<!-- Hero -->
<header class="hero py-5">
<div class="container">
<div class="row align-items-center g-4">
<div class="col-md-2 text-center">
<img src="icon.png" alt="Support" class="img-fluid" style="max-height: 140px; background-color: #fff; padding: 14px; border-radius: 12px; border: 1px solid #e9ecef; box-shadow: 0 1px 4px rgba(0,0,0,0.05);">
</div>
<div class="col-md-10">
<nav aria-label="breadcrumb">
<ol class="breadcrumb mb-2">
<li class="breadcrumb-item"><a class="text-body-secondary" href="https://apievangelist.com">API Evangelist</a></li>
<li class="breadcrumb-item active">Support</li>
</ol>
</nav>
<h1 class="mb-2">Support</h1>
<p class="text-muted mb-3">An index and topic collection covering customer support, help desk, ticketing, knowledge base, and live chat APIs. Customer support platforms power the interfaces and back-office systems that companies use to receive, route, resolve, and learn from customer inquiries across email, chat, phone, social, and self-service channels. This collection includes traditional help desk and ticketing suites like Zendesk, Freshdesk, and Help Scout, conversational customer support platforms like Intercom and Front, enterprise service clouds from Salesforce, ServiceNow, and Microsoft, knowledge base and self-service systems, live chat and messaging platforms like Crisp, LiveChat, and Olark, and modern API-first support tools like Plain and Chatwoot.</p>
<div><a href="https://apievangelist.com/categories/" class="post-tag me-2">#Customer Support</a><a href="https://apievangelist.com/categories/" class="post-tag me-2">#Help Desk</a><a href="https://apievangelist.com/categories/" class="post-tag me-2">#Ticketing</a><a href="https://apievangelist.com/categories/" class="post-tag me-2">#Knowledge Base</a><a href="https://apievangelist.com/categories/" class="post-tag me-2">#Live Chat</a><a href="https://apievangelist.com/categories/" class="post-tag me-2">#Customer Service</a></div>
<div class="mt-3"><a href="https://apievangelist.com" target="_blank" rel="noopener" class="badge bg-light text-emphasis border me-2 mb-2 text-decoration-none"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">public</span> Portal</a><a href="https://github.com/api-evangelist" target="_blank" rel="noopener" class="badge bg-light text-emphasis border me-2 mb-2 text-decoration-none"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">open_in_new</span> GitHubOrganization</a></div>
</div>
</div>
</div>
</header>
<main class="container py-5">
<!-- Network -->
<section class="mb-5">
<h2 class="section-title mb-3"><span class="material-symbols-outlined">handyman</span>Services & Tools</h2>
<div class="list-group">
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Archbee</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/archbee" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/archbee/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Atlassian Jira</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/atlassian-jira" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/atlassian-jira/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Crisp</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/crisp" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/crisp/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">DeveloperHub</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/developerhub" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/developerhub/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Document360</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/document360" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/document360/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Freshchat</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/freshchat" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/freshchat/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Freshdesk</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/freshdesk" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/freshdesk/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Freshworks</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/freshworks" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/freshworks/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Front</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/front" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/front/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Gorgias</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/gorgias" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/gorgias/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Groove</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/groove" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/groove/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Help Scout</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/helpscout" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/helpscout/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">HubSpot</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/hubspot" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/hubspot/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Intercom</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/intercom" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/intercom/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Kustomer</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/kustomer" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/kustomer/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">LiveChat</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/livechat" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/livechat/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">LivePerson</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/liveperson" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/liveperson/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Microsoft Dynamics 365</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/microsoft-dynamics-365" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/microsoft-dynamics-365/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Olark</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/olark" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/olark/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Salesforce Service Cloud</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/salesforce-service-cloud" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/salesforce-service-cloud/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">ServiceDesk Plus</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/servicedesk-plus" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/servicedesk-plus/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">ServiceNow</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/servicenow" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/servicenow/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Spiceworks</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/spiceworks" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/spiceworks/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Statuspage</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/statuspage" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/statuspage/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">SysAid</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/sysaid" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/sysaid/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">TOPdesk</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/topdesk" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/topdesk/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Zendesk</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/zendesk" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/zendesk/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div>
<div class="list-group-item d-flex align-items-center justify-content-between flex-wrap gap-2">
<span class="d-flex align-items-center">
<span class="material-symbols-outlined me-2 text-emphasis">handyman</span>
<span class="fw-semibold">Zoho Desk</span>
</span>
<span class="d-flex align-items-center gap-2">
<a class="btn btn-sm btn-outline-secondary" href="https://github.com/api-evangelist/zoho-desk" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">code</span> Repo</a>
<a class="btn btn-sm btn-outline-success" href="https://providers.apis.io/providers/zoho-desk/" target="_blank" rel="noopener"><span class="material-symbols-outlined" style="font-size:14px;vertical-align:-2px;">link</span> APIs.io</a>
</span>
</div></div>
</section>
<!-- Features -->
<section class="mb-5">
<h2 class="section-title mb-3"><span class="material-symbols-outlined">extension</span>Common Features</h2>
<div class="row g-3">
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>Ticket and Case Management</h3>
<p class="text-muted small mb-0">Support APIs expose create, read, update, and resolve operations on tickets, cases, or conversations representing each customer inquiry, with status, priority, and assignment workflows.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>Omnichannel Conversation Threads</h3>
<p class="text-muted small mb-0">Modern support platforms unify email, chat, social, SMS, and voice into a single conversation thread per customer, exposed through APIs that abstract the underlying channel.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>Knowledge Base and Self-Service</h3>
<p class="text-muted small mb-0">Knowledge base APIs let teams publish, version, and search help articles that power customer self-service portals, in-product help, and AI deflection agents.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>SLA and Routing Policies</h3>
<p class="text-muted small mb-0">Service-level agreements, business hours, queues, and skills-based routing rules are exposed as configurable API resources that drive how tickets flow through support teams.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>Contact and Organization Records</h3>
<p class="text-muted small mb-0">Support APIs maintain customer contact and organization records that link conversations, ticket history, custom attributes, and integrations to CRM systems.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>Macros, Triggers, and Automations</h3>
<p class="text-muted small mb-0">Reusable macros, event-driven triggers, and workflow automations are exposed as APIs so teams can codify common responses and resolution patterns.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>Live Chat and Messaging</h3>
<p class="text-muted small mb-0">Live chat APIs power real-time conversations between customers and agents through web, mobile, and messaging channel widgets with presence, typing, and file sharing primitives.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">extension</span>Reporting and CSAT</h3>
<p class="text-muted small mb-0">Reporting APIs expose ticket volume, response and resolution times, agent productivity, and customer satisfaction (CSAT) scores for dashboards and warehouse export.</p>
</div>
</div>
</div></div>
</section>
<!-- Use Cases -->
<section class="mb-5">
<h2 class="section-title mb-3"><span class="material-symbols-outlined">task_alt</span>Use Cases</h2>
<div class="row g-3">
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">task_alt</span>Omnichannel Help Desk</h3>
<p class="text-muted small mb-0">Companies use platforms like Zendesk, Freshdesk, and Help Scout to route customer email, chat, and social inquiries into a single ticket queue worked by a shared support team.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">task_alt</span>In-Product Messaging and Customer Support</h3>
<p class="text-muted small mb-0">Platforms like Intercom and Crisp embed conversational support widgets directly in web and mobile products, blending live chat, chatbots, and help articles.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">task_alt</span>Enterprise Customer Service</h3>
<p class="text-muted small mb-0">Salesforce Service Cloud, ServiceNow, and Microsoft Dynamics 365 Customer Service handle enterprise-scale case management, integrated with CRM, field service, and back-office systems.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">task_alt</span>Status Communication and Incident Updates</h3>
<p class="text-muted small mb-0">Atlassian Statuspage and similar tools publish service status, incident timelines, and scheduled maintenance through APIs and customer-facing status pages.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">task_alt</span>Self-Service Knowledge Bases</h3>
<p class="text-muted small mb-0">Document360, Archbee, and DeveloperHub power public and private help centers, customer documentation portals, and AI-searchable knowledge bases.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">task_alt</span>E-commerce and Subscription Support</h3>
<p class="text-muted small mb-0">Gorgias, Kustomer, and Zendesk integrate deeply with Shopify, Stripe, and other commerce platforms so support agents see orders, refunds, and subscription state alongside each ticket.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">task_alt</span>Internal IT Service Desk</h3>
<p class="text-muted small mb-0">ServiceDesk Plus, SysAid, TOPdesk, and Spiceworks deliver IT service management (ITSM) workflows for employees raising IT, HR, and facilities requests.</p>
</div>
</div>
</div></div>
</section>
<!-- Integrations -->
<section class="mb-5">
<h2 class="section-title mb-3"><span class="material-symbols-outlined">integration_instructions</span>Integrations</h2>
<div class="row g-3">
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>Zendesk</h3>
<p class="text-muted small mb-0">Market-leading customer support and ticketing suite with deep APIs for tickets, users, organizations, macros, triggers, and help center articles.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>Intercom</h3>
<p class="text-muted small mb-0">Conversational customer engagement platform with APIs for conversations, contacts, articles, and AI-powered Fin support automation.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>Freshdesk</h3>
<p class="text-muted small mb-0">Freshworks' omnichannel customer support and ticketing platform with APIs for tickets, contacts, agents, and knowledge base solutions.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>Help Scout</h3>
<p class="text-muted small mb-0">Shared inbox and help desk platform designed for small and mid-market teams, with APIs for conversations, customers, mailboxes, and Docs articles.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>Salesforce Service Cloud</h3>
<p class="text-muted small mb-0">Enterprise customer service platform built on the Salesforce CRM, with REST and SOAP APIs for cases, knowledge articles, entitlements, and omnichannel routing.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>ServiceNow</h3>
<p class="text-muted small mb-0">Enterprise service management platform with APIs covering customer service management, incident, problem, change, and knowledge management.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>Front</h3>
<p class="text-muted small mb-0">Shared inbox and customer operations platform with APIs for conversations, contacts, comments, and team collaboration on customer email.</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100">
<div class="card-body">
<h3 class="h6 d-flex align-items-center mb-2"><span class="material-symbols-outlined me-2 text-emphasis">integration_instructions</span>Statuspage</h3>
<p class="text-muted small mb-0">Atlassian's incident communication platform with APIs to publish component status, incidents, scheduled maintenance, and subscriber notifications.</p>
</div>
</div>
</div></div>
</section>
<!-- Blog posts -->
<section class="mb-5">
<h2 class="section-title mb-3"><span class="material-symbols-outlined">article</span>Latest API Stories</h2>
<p class="text-muted small">Most recent 25 stories pulled from across the API Evangelist network blog feeds.</p>
<div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://www.solo.io/blog/building-an-mcp-gateway-with-apigee-api-gateway" target="_blank" rel="noopener">Building an MCP Gateway with Apigee API Gateway | Solo.io</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-14</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/gloo" target="_blank" rel="noopener">gloo</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">www.solo.io</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://eodhd.com/financial-apis-blog/eodhd-mcp-server-update-75-tools-oauth-and-api-versioning" target="_blank" rel="noopener">EODHD MCP Server Update: 75 Tools, OAuth, and API Versioning</a></h3>
<div class="post-meta">
<span class="me-2">2026-03-31</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/eodhd" target="_blank" rel="noopener">eodhd</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">eodhd.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://www.apollographql.com/blog/building-a-secure-ai-agent-api-stack-with-graphql-apollo-skills-and-mcp-server" target="_blank" rel="noopener">Building a Secure AI Agent API Stack with GraphQL, Apollo Skills, and MCP Server</a></h3>
<div class="post-meta">
<span class="me-2">2026-03-05</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/apollo-federation" target="_blank" rel="noopener">apollo-federation</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">www.apollographql.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://www.apollographql.com/blog/connect-ai-agents-to-your-graphql-api-using-mcp-and-type-safe-tool-configuration" target="_blank" rel="noopener">Connect AI Agents to Your GraphQL API Using MCP and Type-Safe Tool Configuration</a></h3>
<div class="post-meta">
<span class="me-2">2026-02-26</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/apollo-federation" target="_blank" rel="noopener">apollo-federation</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">www.apollographql.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://truto.one/blog/announcing-truto-docs-mcp-stop-ai-hallucinations-in-api-integrations/" target="_blank" rel="noopener">Announcing Truto Docs MCP: Stop AI Hallucinations in API Integrations</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-05</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/truto" target="_blank" rel="noopener">truto</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">truto.one</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://www.pulumi.com/blog/rest-api-docs-from-openapi/" target="_blank" rel="noopener">Pulumi Cloud REST API Docs, Now Generated from OpenAPI</a></h3>
<div class="post-meta">
<span class="me-2">2026-04-20</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/pulumi" target="_blank" rel="noopener">pulumi</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">www.pulumi.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://www.apollographql.com/blog/introducing-authorization-for-apollo-mcp-server" target="_blank" rel="noopener">Introducing Authorization for Apollo MCP Server: Secure AI Access to Your GraphQL APIs</a></h3>
<div class="post-meta">
<span class="me-2">2025-08-08</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/apollo-federation" target="_blank" rel="noopener">apollo-federation</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">www.apollographql.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://truto.one/blog/implementing-end-user-oauth-identity-passthrough-for-remote-mcp-servers/" target="_blank" rel="noopener">Implementing End-User OAuth Identity Passthrough for Remote MCP Servers</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-13</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/truto" target="_blank" rel="noopener">truto</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">truto.one</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://devblogs.microsoft.com/dotnet/api-versioning-in-dotnet-10-applications/" target="_blank" rel="noopener">Combining API versioning with OpenAPI in .NET 10 applications</a></h3>
<div class="post-meta">
<span class="me-2">2026-04-28</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/c-sharp" target="_blank" rel="noopener">c-sharp</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">devblogs.microsoft.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://community.fabric.microsoft.com/t5/Fabric-Updates-Blog/Custom-authorization-for-API-for-GraphQL-in-Microsoft-Fabric/ba-p/5182352" target="_blank" rel="noopener">Custom authorization for API for GraphQL in Microsoft Fabric (Preview)</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-14</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/microsoft-fabric" target="_blank" rel="noopener">microsoft-fabric</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">community.fabric.microsoft.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://developer.okta.com/blog/2026/05/12/low-code-api-integration" target="_blank" rel="noopener">How to Build Low-Code API Integrations for Enterprise Apps Using Okta</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-12</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/okta" target="_blank" rel="noopener">okta</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">developer.okta.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://devblogs.microsoft.com/azure-sdk/mcp-as-easy-as-1-2-3-introducing-the-fluent-api-for-mcp-apps/" target="_blank" rel="noopener">MCP as Easy as 1-2-3: Introducing the Fluent API for MCP Apps</a></h3>
<div class="post-meta">
<span class="me-2">2026-04-07</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/microsoft-azure-web-pubsub" target="_blank" rel="noopener">microsoft-azure-web-pubsub</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">devblogs.microsoft.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://www.pulumi.com/blog/announcing-openapi-support-pulumi-cloud/" target="_blank" rel="noopener">Announcing OpenAPI support for the Pulumi Cloud REST API</a></h3>
<div class="post-meta">
<span class="me-2">2026-02-05</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/pulumi" target="_blank" rel="noopener">pulumi</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">www.pulumi.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://wundergraph.com/blog/graphql-persisted-operations-llms-mcp" target="_blank" rel="noopener">MCP Gateway with Curated GraphQL Persisted Operations</a></h3>
<div class="post-meta">
<span class="me-2">2025-10-17</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/wundergraph" target="_blank" rel="noopener">wundergraph</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">wundergraph.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://liblab.com/blog/how-mcp-servers-simplify-api-integration" target="_blank" rel="noopener">How MCP Servers Simplify API Integration for AI</a></h3>
<div class="post-meta">
<span class="me-2">2025-05-20</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/liblab" target="_blank" rel="noopener">liblab</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">liblab.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://blog.apilayer.com/mcp-vs-cli-which-is-better-for-ai-assisted-developer-workflows-2/" target="_blank" rel="noopener">MCP vs CLI: Which Is Better for AI-Assisted Developer Workflows?</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-15</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/api-layer" target="_blank" rel="noopener">api-layer</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">blog.apilayer.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://aws.amazon.com/about-aws/whats-new/2026/05/amazon-eventbridge-sdk-integrations/" target="_blank" rel="noopener">Amazon EventBridge Scheduler adds 619 new SDK API actions, including Lambda Managed Instances</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-12</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/amazon-deepracer" target="_blank" rel="noopener">amazon-deepracer</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">aws.amazon.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://truto.one/blog/how-to-test-and-mock-mcp-servers-in-cicd-without-hitting-live-apis/" target="_blank" rel="noopener">How to Test and Mock MCP Servers in CI/CD Without Hitting Live APIs</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-07</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/truto" target="_blank" rel="noopener">truto</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">truto.one</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://www.twilio.com/en-us/blog/developers/introducing-twilio-mcp-skills" target="_blank" rel="noopener">Introducing the Twilio MCP Server and Skills: Give Your Coding Agents Native Access to 1,800+ Twilio APIs</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-06</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/twilio" target="_blank" rel="noopener">twilio</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">www.twilio.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://community.fabric.microsoft.com/t5/Fabric-Updates-Blog/Discover-items-across-workspaces-with-the-OneLake-Catalog-Search/ba-p/5176768" target="_blank" rel="noopener">Discover items across workspaces with the OneLake Catalog Search API, MCP and CLI tools (Preview)</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-05</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/microsoft-fabric" target="_blank" rel="noopener">microsoft-fabric</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">community.fabric.microsoft.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://naftiko.io/blog/api-discovery-reusability-governance-three-capabilities-one-mcp-surface/" target="_blank" rel="noopener">API Discovery, Reusability, and Governance — Three Capabilities, One MCP Surface for Claude and Copilot</a></h3>
<div class="post-meta">
<span class="me-2">2026-05-01</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/naftiko" target="_blank" rel="noopener">naftiko</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">naftiko.io</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://blogs.mulesoft.com/dev-guides/how-to-make-your-apis-agent-ready-with-mcp-bridge/" target="_blank" rel="noopener">How to Make Your APIs Agent-Ready With MCP Bridge</a></h3>
<div class="post-meta">
<span class="me-2">2026-04-30</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/mulesoft" target="_blank" rel="noopener">mulesoft</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">blogs.mulesoft.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="http://redocly.com/blog/api-contract-testing-arazzo" target="_blank" rel="noopener">API contract testing from OpenAPI using Arazzo</a></h3>
<div class="post-meta">
<span class="me-2">2026-04-22</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/redocly" target="_blank" rel="noopener">redocly</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">redocly.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://blogs.vmware.com/tanzu/mcp-vs-apis-why-you-need-both-for-ai-applications/" target="_blank" rel="noopener">MCP vs. APIs: Why You Need Both for AI Applications</a></h3>
<div class="post-meta">
<span class="me-2">2026-04-21</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/vmware-tanzu" target="_blank" rel="noopener">vmware-tanzu</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">blogs.vmware.com</span>
</div>
</div>
</div>
<div class="post-item d-flex">
<div class="flex-shrink-0 d-flex align-items-start" style="padding-top: 0.25rem;">
<span class="material-symbols-outlined fs-3 text-emphasis">article</span>
</div>
<div class="flex-grow-1 ms-3">
<h3 class="mb-1"><a href="https://wundergraph.com/blog/mcp-per-tool-oauth-scopes-graphql-schema" target="_blank" rel="noopener">Per-Tool OAuth Scopes for MCP, Derived from Your Schema</a></h3>
<div class="post-meta">
<span class="me-2">2026-04-17</span>
<span class="me-2">·</span>
<a class="post-tag" href="https://github.com/api-evangelist/wundergraph" target="_blank" rel="noopener">wundergraph</a>
<span class="mx-2 text-muted">·</span>
<span class="text-muted small">wundergraph.com</span>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer-ae py-4 mt-5">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<span>© 2026 API Evangelist</span>
</div>
<div class="col-md-6 text-md-end mt-2 mt-md-0">
<a href="https://apievangelist.com/about/api-evangelist" class="text-muted text-decoration-none me-3">About</a>
<a href="https://apievangelist.com/contact" class="text-muted text-decoration-none me-3">Contact</a>
<a href="https://github.com/api-evangelist/support" class="text-muted text-decoration-none me-3">GitHub</a>
<a href="https://buttondown.com/apievangelist" class="text-muted text-decoration-none">Newsletter</a>
</div>