forked from tsubasakong/awesome-agent-payments-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
457 lines (402 loc) Β· 16.9 KB
/
index.html
File metadata and controls
457 lines (402 loc) Β· 16.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awesome Agent Payments Protocol - AP2, A2A, x402, ACP & Trust Rails</title>
<meta name="description" content="Comprehensive curated resources for Google's AP2, OpenAI's ACP, x402, A2A, Visa Trusted Agent Protocol, Mastercard Agent Pay, and Web Bot Auth. Official docs, specs, tools & industry analysis.">
<meta name="keywords" content="Agent Payments Protocol, AP2, ACP, A2A, x402, Visa Trusted Agent Protocol, Mastercard Agent Pay, Web Bot Auth, agentic commerce, autonomous agents, Google Cloud, Coinbase, OpenAI, Stripe">
<!-- Open Graph / Social Media -->
<meta property="og:title" content="Awesome Agent Payments Protocol - Complete Ecosystem Hub">
<meta property="og:description" content="The definitive collection of AP2, ACP, x402, A2A & trust rails resources for developers building with agent payments.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://tsubasakong.github.io/awesome-agent-payments-protocol/">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Awesome Agent Payments Protocol">
<meta name="twitter:description" content="Curated resources for AP2, ACP, x402, A2A & network trust rails - the complete agentic commerce ecosystem">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
text-align: center;
color: white;
padding: 60px 0;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
font-weight: 700;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 20px;
opacity: 0.9;
}
.update-badge {
display: inline-block;
background: rgba(255,200,0,0.9);
color: #333;
padding: 10px 20px;
border-radius: 25px;
font-weight: 600;
margin: 20px 0;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.badges {
margin: 30px 0;
}
.badge {
display: inline-block;
background: rgba(255,255,255,0.2);
color: white;
padding: 8px 16px;
margin: 5px;
border-radius: 20px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}
.badge:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
}
.cta-buttons {
margin: 40px 0;
}
.btn {
display: inline-block;
padding: 15px 30px;
margin: 10px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.btn-primary {
background: white;
color: #667eea;
}
.btn-primary:hover {
background: #f8f9fa;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-secondary {
background: transparent;
color: white;
border-color: white;
}
.btn-secondary:hover {
background: white;
color: #667eea;
}
.content {
background: white;
border-radius: 15px;
padding: 40px;
margin-top: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.new-section {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
padding: 30px;
border-radius: 12px;
margin: 30px 0;
}
.new-section h3 {
margin-bottom: 15px;
font-size: 1.8rem;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin: 40px 0;
}
.stat {
text-align: center;
padding: 20px;
background: #f8f9fa;
border-radius: 10px;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: #667eea;
display: block;
}
.protocol-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 30px 0;
}
.protocol-card {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 25px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s ease;
}
.protocol-card:hover {
transform: translateY(-5px);
}
.protocol-card.new {
background: linear-gradient(135deg, #f093fb, #f5576c);
}
.protocol-card h4 {
font-size: 1.5rem;
margin-bottom: 10px;
}
.protocol-card .label {
display: inline-block;
background: rgba(255,255,255,0.3);
padding: 5px 12px;
border-radius: 15px;
font-size: 0.8rem;
margin-bottom: 10px;
font-weight: 600;
}
.categories {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin: 40px 0;
}
.category {
background: #f8f9fa;
padding: 25px;
border-radius: 10px;
border-left: 4px solid #667eea;
}
.category h3 {
color: #333;
margin-bottom: 15px;
}
.partners-section {
background: #f8f9fa;
padding: 30px;
border-radius: 12px;
margin: 30px 0;
}
.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
margin-top: 20px;
}
.partner-badge {
background: white;
padding: 15px;
border-radius: 8px;
text-align: center;
font-weight: 600;
color: #667eea;
}
.footer {
text-align: center;
margin-top: 60px;
padding: 40px 0;
color: white;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1.1rem;
}
.content {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="hero">
<h1>π Awesome Agent Payments Protocol</h1>
<div class="update-badge">β MAJOR UPDATE: Nov 2025 - New Protocols Added!</div>
<p>The definitive resource hub for agentic commerce protocols</p>
<p>AP2 β’ ACP β’ x402 β’ A2A β’ Trust Rails β’ Web Bot Auth</p>
<div class="badges">
<span class="badge">π 50+ Resources</span>
<span class="badge">π 7 Protocols</span>
<span class="badge">π’ 60+ Partners</span>
<span class="badge">β Community Driven</span>
</div>
<div class="cta-buttons">
<a href="https://github.com/tsubasakong/awesome-agent-payments-protocol" class="btn btn-primary">
π Browse Full List
</a>
<a href="https://github.com/tsubasakong/awesome-agent-payments-protocol/issues/new?template=add_resource.yml" class="btn btn-secondary">
β Add Resource
</a>
</div>
</div>
<div class="content">
<div class="new-section">
<h3>π What's New - November 2025</h3>
<p><strong>Major ecosystem expansion since AP2's September launch:</strong></p>
<ul style="margin-top: 15px; line-height: 2;">
<li>π <strong>OpenAI + Stripe's ACP</strong> - Powers Instant Checkout in ChatGPT (Etsy live, Shopify coming)</li>
<li>π¦ <strong>Visa Trusted Agent Protocol</strong> - Network-led agent trust framework</li>
<li>π³ <strong>Mastercard Agent Pay</strong> - Pioneering agentic payments technology</li>
<li>π <strong>Web Bot Auth</strong> - Cryptographic agent identity standard</li>
<li>π <strong>x402 Foundation</strong> - Cloudflare + Coinbase stewarding x402 adoption</li>
<li>π οΈ <strong>Cloudflare Agents SDK</strong> - Built-in x402 + MCP support</li>
</ul>
</div>
<div class="protocol-grid">
<div class="protocol-card">
<h4>π AP2</h4>
<div class="label">Google</div>
<p>Agent Payments Protocol for secure, verifiable agent-driven payments with mandates and accountability</p>
</div>
<div class="protocol-card new">
<h4>π ACP</h4>
<div class="label">NEW - OpenAI + Stripe</div>
<p>Agentic Commerce Protocol powering Instant Checkout in ChatGPT with open standards</p>
</div>
<div class="protocol-card">
<h4>π€ A2A</h4>
<div class="label">Linux Foundation</div>
<p>Agent-to-Agent protocol enabling seamless interoperability between autonomous agents</p>
</div>
<div class="protocol-card">
<h4>π° x402</h4>
<div class="label">Coinbase + Cloudflare</div>
<p>HTTP 402-based protocol for machine payments, crypto paywalls, and programmable settlements</p>
</div>
<div class="protocol-card new">
<h4>π¦ Visa TAP</h4>
<div class="label">NEW - Visa</div>
<p>Trusted Agent Protocol for ecosystem-led agent verification and trust framework</p>
</div>
<div class="protocol-card new">
<h4>π³ Agent Pay</h4>
<div class="label">NEW - Mastercard</div>
<p>Mastercard's pioneering technology for smarter, safer agentic commerce payments</p>
</div>
<div class="protocol-card new">
<h4>π Web Bot Auth</h4>
<div class="label">NEW - IETF Draft</div>
<p>Cryptographic agent identity using HTTP Message Signatures for verified agent interactions</p>
</div>
</div>
<div class="stats">
<div class="stat">
<span class="stat-number">50+</span>
<span>Curated Resources</span>
</div>
<div class="stat">
<span class="stat-number">7</span>
<span>Major Protocols</span>
</div>
<div class="stat">
<span class="stat-number">60+</span>
<span>Partner Companies</span>
</div>
<div class="stat">
<span class="stat-number">100%</span>
<span>Open Source</span>
</div>
</div>
<div class="partners-section">
<h3 style="text-align: center; margin-bottom: 20px;">π Ecosystem Partners</h3>
<div class="partners-grid">
<div class="partner-badge">Google Cloud</div>
<div class="partner-badge">OpenAI</div>
<div class="partner-badge">Coinbase</div>
<div class="partner-badge">Stripe</div>
<div class="partner-badge">Cloudflare</div>
<div class="partner-badge">Visa</div>
<div class="partner-badge">Mastercard</div>
<div class="partner-badge">Shopify</div>
<div class="partner-badge">Etsy</div>
<div class="partner-badge">PayPal</div>
<div class="partner-badge">American Express</div>
<div class="partner-badge">Salesforce</div>
<div class="partner-badge">Ethereum Foundation</div>
<div class="partner-badge">MetaMask</div>
<div class="partner-badge">Adyen</div>
<div class="partner-badge">Worldpay</div>
</div>
<p style="text-align: center; margin-top: 20px; color: #666;">...and 44+ more partners</p>
</div>
<div class="categories">
<div class="category">
<h3>π Official Documentation</h3>
<p>Google, OpenAI, Coinbase, Visa & Mastercard specs, repos, and protocol documentation</p>
</div>
<div class="category">
<h3>π Developer Tools</h3>
<p>SDKs, Cloudflare Agents SDK, MCP servers, implementation guides, and starter code</p>
</div>
<div class="category">
<h3>π° News & Analysis</h3>
<p>Industry coverage: ACP launch, x402 Foundation, trust rails, and ecosystem updates</p>
</div>
<div class="category">
<h3>π₯ Videos & Tutorials</h3>
<p>Educational content, protocol explainers, and technical deep dives</p>
</div>
<div class="category">
<h3>π Security & Standards</h3>
<p>Web Bot Auth, CSA guidance, IETF drafts, and W3C Verifiable Credentials</p>
</div>
<div class="category">
<h3>π Specifications</h3>
<p>Technical whitepapers, RFCs, and protocol specifications for all 7 protocols</p>
</div>
</div>
<div style="text-align: center; margin: 40px 0; padding: 30px; background: #f8f9fa; border-radius: 10px;">
<h3>π€ Contributing</h3>
<p>Help us track the rapidly evolving agentic commerce ecosystem!</p>
<p>Found new protocols, tools, or resources? Submit via our easy issue template.</p>
<a href="https://github.com/tsubasakong/awesome-agent-payments-protocol/blob/main/CONTRIBUTING.md" class="btn btn-primary" style="margin-top: 15px;">
π Contribution Guide
</a>
</div>
</div>
<div class="footer">
<p>
Made with β€οΈ by <a href="https://github.com/tsubasakong" style="color: white;">@tsubasakong</a> |
<a href="https://github.com/tsubasakong/awesome-agent-payments-protocol" style="color: white;">View on GitHub</a>
</p>
<p style="margin-top: 10px; opacity: 0.8; font-size: 0.9rem;">
Keywords: Agent Payments Protocol, AP2, ACP, A2A, x402, Agentic Commerce, Visa Trusted Agent Protocol, Mastercard Agent Pay, Web Bot Auth, Google Cloud, OpenAI, Coinbase, Stripe, Cloudflare
</p>
<p style="margin-top: 10px; opacity: 0.7; font-size: 0.85rem;">
Last updated: November 6, 2025
</p>
</div>
</div>
<script>
console.log('Awesome Agent Payments Protocol - Updated with ACP, Trust Rails & x402 Foundation');
</script>
</body>
</html>