-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1103 lines (998 loc) · 37.4 KB
/
Copy pathindex.html
File metadata and controls
1103 lines (998 loc) · 37.4 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HYDRA — 402-Native Paid Work Engine for Agents</title>
<meta name="description" content="HYDRA is a pay-per-call API for AI agents. Web extraction, search, regulatory intelligence, prediction market signals, and oracle data. 74 paid endpoints from $0.001 USDC via x402 on Base L2.">
<meta name="keywords" content="x402 API, agent tools, web extraction API, search API, regulatory intelligence, prediction market data, MCP server, pay-per-call, USDC payments, Base L2, AI agent infrastructure">
<meta property="og:title" content="HYDRA — 402-Native Paid Work Engine for Agents">
<meta property="og:description" content="Web extraction, search, regulatory intelligence, and oracle data. 25 pay-per-call endpoints via x402 on Base L2.">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hydra-api-nlnj.onrender.com">
<meta name="robots" content="index, follow">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0b0d;
--surface: #111318;
--surface2: #181b22;
--border: #232836;
--accent: #4f8ef7;
--accent2: #7c5cf6;
--green: #22c55e;
--yellow: #f59e0b;
--red: #ef4444;
--text: #e8eaf0;
--muted: #8892a4;
--mono: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
--sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--sans);
background: var(--bg);
color: var(--text);
line-height: 1.6;
font-size: 16px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
/* ── Layout ── */
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
}
section { padding: 80px 0; }
section + section { border-top: 1px solid var(--border); }
/* ── Nav ── */
nav {
position: sticky;
top: 0;
z-index: 100;
background: rgba(10, 11, 13, 0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 14px 0;
}
nav .container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.nav-brand {
font-size: 18px;
font-weight: 700;
letter-spacing: 0.04em;
color: var(--text);
font-family: var(--mono);
}
.nav-brand span { color: var(--accent); }
.nav-links {
display: flex;
gap: 24px;
list-style: none;
}
.nav-links a {
color: var(--muted);
font-size: 14px;
font-weight: 500;
transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.btn {
display: inline-block;
padding: 10px 20px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
cursor: pointer;
transition: opacity 0.15s, transform 0.1s;
text-align: center;
}
.btn:hover { opacity: 0.88; text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: transparent; }
/* ── Hero ── */
.hero {
padding: 100px 0 80px;
text-align: center;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(79, 142, 247, 0.1);
border: 1px solid rgba(79, 142, 247, 0.3);
border-radius: 100px;
padding: 6px 16px;
font-size: 13px;
color: var(--accent);
font-weight: 500;
margin-bottom: 28px;
font-family: var(--mono);
}
.hero-badge::before {
content: '';
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--green);
display: inline-block;
}
.hero h1 {
font-size: clamp(36px, 6vw, 62px);
font-weight: 800;
line-height: 1.1;
letter-spacing: -0.03em;
margin-bottom: 20px;
}
.hero h1 .hl { color: var(--accent); }
.hero-sub {
font-size: clamp(16px, 2.5vw, 20px);
color: var(--muted);
max-width: 640px;
margin: 0 auto 36px;
line-height: 1.55;
}
.hero-actions {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.hero-meta {
margin-top: 48px;
display: flex;
justify-content: center;
gap: 32px;
flex-wrap: wrap;
}
.meta-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.meta-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--muted);
font-weight: 600;
}
.meta-value {
font-size: 13px;
font-family: var(--mono);
color: var(--text);
}
.meta-value.green { color: var(--green); }
.meta-value.accent { color: var(--accent); }
/* ── Section headings ── */
.section-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--accent);
font-weight: 700;
margin-bottom: 10px;
}
.section-title {
font-size: clamp(24px, 4vw, 38px);
font-weight: 800;
letter-spacing: -0.025em;
line-height: 1.15;
margin-bottom: 14px;
}
.section-desc {
font-size: 16px;
color: var(--muted);
max-width: 560px;
line-height: 1.65;
}
/* ── Cards ── */
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 14px;
padding: 28px;
}
/* ── How It Works ── */
.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 48px;
}
.step {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 14px;
padding: 28px;
position: relative;
}
.step-num {
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(79, 142, 247, 0.12);
border: 1px solid rgba(79, 142, 247, 0.35);
color: var(--accent);
font-weight: 700;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 18px;
font-family: var(--mono);
}
.step h3 {
font-size: 17px;
font-weight: 700;
margin-bottom: 10px;
}
.step p {
font-size: 14px;
color: var(--muted);
line-height: 1.6;
}
.step code {
font-family: var(--mono);
font-size: 12px;
background: rgba(255,255,255,0.05);
border-radius: 4px;
padding: 2px 6px;
color: var(--accent);
}
/* ── Pricing table ── */
.pricing-intro {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
margin-bottom: 40px;
}
.pricing-group {
margin-bottom: 40px;
}
.pricing-group-title {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--muted);
font-weight: 700;
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 1px solid var(--border);
}
.pricing-table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.pricing-table th {
text-align: left;
color: var(--muted);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.08em;
font-weight: 600;
padding: 10px 14px;
border-bottom: 1px solid var(--border);
}
.pricing-table td {
padding: 13px 14px;
border-bottom: 1px solid rgba(35, 40, 54, 0.6);
vertical-align: top;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(255,255,255,0.02); }
.endpoint-path {
font-family: var(--mono);
font-size: 13px;
color: var(--accent);
white-space: nowrap;
}
.method-badge {
display: inline-block;
font-family: var(--mono);
font-size: 10px;
font-weight: 700;
padding: 2px 7px;
border-radius: 4px;
letter-spacing: 0.05em;
margin-right: 8px;
}
.method-get { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.method-post { background: rgba(79, 142, 247, 0.15); color: var(--accent); }
.price-tag {
font-family: var(--mono);
font-weight: 700;
white-space: nowrap;
}
.price-free { color: var(--green); }
.price-low { color: var(--accent); }
.price-mid { color: var(--yellow); }
.price-high { color: #f97316; }
.price-premium { color: var(--red); }
.desc-text {
color: var(--muted);
font-size: 13px;
line-height: 1.5;
}
.free-badge {
display: inline-flex;
align-items: center;
gap: 5px;
background: rgba(34, 197, 94, 0.1);
border: 1px solid rgba(34, 197, 94, 0.3);
color: var(--green);
font-size: 11px;
font-weight: 600;
padding: 3px 10px;
border-radius: 100px;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-left: 8px;
}
/* ── Feature grid ── */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 40px;
}
.feature-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 14px;
padding: 28px;
}
.feature-icon {
font-size: 28px;
margin-bottom: 16px;
}
.feature-card h3 {
font-size: 17px;
font-weight: 700;
margin-bottom: 10px;
}
.feature-card p {
font-size: 14px;
color: var(--muted);
line-height: 1.65;
}
/* ── Code block ── */
.code-block {
background: #0d0f14;
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
font-family: var(--mono);
font-size: 13px;
line-height: 1.7;
overflow-x: auto;
margin-top: 20px;
}
.code-block .comment { color: #4a5568; }
.code-block .keyword { color: var(--accent2); }
.code-block .string { color: var(--green); }
.code-block .number { color: var(--yellow); }
.code-block .key { color: var(--accent); }
/* ── Two-col layout ── */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
}
@media (max-width: 768px) {
.two-col { grid-template-columns: 1fr; }
}
/* ── CTA strip ── */
.cta-strip {
background: linear-gradient(135deg, rgba(79, 142, 247, 0.08) 0%, rgba(124, 92, 246, 0.08) 100%);
border: 1px solid rgba(79, 142, 247, 0.2);
border-radius: 20px;
padding: 52px 40px;
text-align: center;
}
.cta-strip h2 {
font-size: clamp(24px, 4vw, 36px);
font-weight: 800;
letter-spacing: -0.02em;
margin-bottom: 14px;
}
.cta-strip p {
color: var(--muted);
font-size: 16px;
margin-bottom: 28px;
}
/* ── Footer ── */
footer {
border-top: 1px solid var(--border);
padding: 40px 0;
}
.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
}
.footer-brand {
font-family: var(--mono);
font-weight: 700;
font-size: 16px;
color: var(--text);
}
.footer-brand span { color: var(--accent); }
.footer-links {
display: flex;
gap: 20px;
list-style: none;
}
.footer-links a {
color: var(--muted);
font-size: 14px;
transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); text-decoration: none; }
.footer-wallet {
font-family: var(--mono);
font-size: 12px;
color: var(--muted);
}
.footer-wallet strong { color: var(--accent); }
/* ── Oracle section ── */
.oracle-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 40px;
}
.oracle-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 14px;
padding: 28px;
}
.oracle-card .oracle-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.oracle-logo {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 14px;
font-family: var(--mono);
}
.uma-logo { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.chainlink-logo { background: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59,130,246,0.3); }
.oracle-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.oracle-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.endpoint-ref {
font-family: var(--mono);
font-size: 12px;
background: rgba(255,255,255,0.04);
border: 1px solid var(--border);
border-radius: 8px;
padding: 10px 14px;
color: var(--muted);
}
.endpoint-ref .path { color: var(--accent); }
.endpoint-ref .price-tag { color: var(--yellow); font-size: 13px; }
/* ── Highlight rows ── */
.free-row td { background: rgba(34, 197, 94, 0.03); }
/* ── Responsive nav ── */
@media (max-width: 640px) {
.nav-links { display: none; }
.hero { padding: 60px 0 50px; }
section { padding: 56px 0; }
.cta-strip { padding: 36px 24px; }
}
/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
</style>
</head>
<body>
<!-- ── Navigation ── -->
<nav>
<div class="container">
<span class="nav-brand">HYDR<span>A</span></span>
<ul class="nav-links">
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#bots">Trading Bots</a></li>
<li><a href="#oracle">Oracles</a></li>
<li><a href="/docs">API Docs</a></li>
</ul>
<a href="/docs" class="btn btn-primary">API Docs</a>
</div>
</nav>
<!-- ── Hero ── -->
<section class="hero">
<div class="container">
<div class="hero-badge">Live on Base · x402 · Pay-per-use</div>
<h1>
Paid Work Engine<br>
for <span class="hl">Agents & Developers</span>
</h1>
<p class="hero-sub">
Web extraction, search, regulatory intelligence, prediction market signals,
and oracle data. 25 pay-per-call endpoints from $0.001 USDC via x402 on Base L2.
Built for AI agents that need structured data on demand.
</p>
<div class="hero-actions">
<a href="/docs" class="btn btn-primary">Explore the API</a>
<a href="#pricing" class="btn btn-ghost">View Pricing</a>
</div>
<div class="hero-meta">
<div class="meta-item">
<span class="meta-label">Payment</span>
<span class="meta-value accent">USDC on Base via x402</span>
</div>
<div class="meta-item">
<span class="meta-label">Chain</span>
<span class="meta-value">Base (8453)</span>
</div>
<div class="meta-item">
<span class="meta-label">Status</span>
<span class="meta-value green">Operational</span>
</div>
<div class="meta-item">
<span class="meta-label">Wallet</span>
<span class="meta-value">0x2F12A73e1e08F3BCE12212005cCaBE2ACEf87141</span>
</div>
</div>
</div>
</section>
<!-- ── How It Works ── -->
<section id="how-it-works">
<div class="container">
<div class="section-label">Protocol</div>
<h2 class="section-title">How x402 Payments Work</h2>
<p class="section-desc">
HYDRA uses the x402 HTTP payment protocol — a standard for machine-readable micropayments.
No subscriptions. No API keys. No friction.
</p>
<div class="steps">
<div class="step">
<div class="step-num">01</div>
<h3>Call the Endpoint</h3>
<p>
Make a standard HTTP request to any paid endpoint — for example,
<code>POST /v1/markets/alpha</code>. No credentials required for the initial call.
</p>
</div>
<div class="step">
<div class="step-num">02</div>
<h3>Receive Payment Details</h3>
<p>
The API responds with HTTP <code>402 Payment Required</code> and headers specifying
the exact USDC amount, wallet address, and Base chain ID.
Your bot or client reads these automatically.
</p>
</div>
<div class="step">
<div class="step-num">03</div>
<h3>Pay and Resend</h3>
<p>
Send the specified USDC to <code>0x2F12A73e1e08F3BCE12212005cCaBE2ACEf87141</code>
on Base. Include the transaction hash in the <code>X-Payment-Proof</code> header
and resend your request — you get the full response instantly.
</p>
</div>
</div>
<div class="code-block" style="margin-top: 40px;">
<span class="comment"># Step 1: call the endpoint</span>
<span class="keyword">curl</span> -X POST https://hydra-api-nlnj.onrender.com/v1/markets/alpha
<span class="comment"># → 402 Payment Required</span>
<span class="comment"># X-Payment-Amount: 10.00</span>
<span class="comment"># X-Payment-Address: 0x2F12A73e1e08F3BCE12212005cCaBE2ACEf87141</span>
<span class="comment"># X-Payment-Network: base</span>
<span class="comment"># X-Payment-Chain-Id: 8453</span>
<span class="comment"># Step 3: pay USDC on Base, then resend with proof</span>
<span class="keyword">curl</span> -X POST https://hydra-api-nlnj.onrender.com/v1/markets/alpha \
-H <span class="string">"X-Payment-Proof: 0xYOUR_TX_HASH"</span> \
-H <span class="string">"Content-Type: application/json"</span> \
-d <span class="string">'{"context": "FOMC decision in 48h, SEC crypto enforcement expected"}'</span>
</div>
</div>
</section>
<!-- ── Pricing ── -->
<section id="pricing">
<div class="container">
<div class="pricing-intro">
<div>
<div class="section-label">Pricing</div>
<h2 class="section-title">Pay Only for What You Use</h2>
<p class="section-desc">
Every endpoint is priced per call in USDC. Start free — the
<code style="font-family: var(--mono); font-size: 13px; color: var(--green);">/v1/markets</code>
endpoint requires no payment.
</p>
</div>
<div style="text-align: right; flex-shrink: 0;">
<div class="meta-label" style="text-align: right; margin-bottom: 6px;">Token</div>
<div style="font-family: var(--mono); font-size: 14px; margin-bottom: 16px;">USDC on Base (8453)</div>
<a href="/pricing" class="btn btn-ghost" style="font-size: 13px;">Machine-readable JSON</a>
</div>
</div>
<!-- Free endpoints -->
<div class="pricing-group">
<div class="pricing-group-title">Free Endpoints — Start Here</div>
<table class="pricing-table">
<thead>
<tr>
<th>Endpoint</th>
<th>Price</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="free-row">
<td><span class="method-badge method-get">GET</span><span class="endpoint-path">/v1/markets</span></td>
<td><span class="price-tag price-free">FREE</span></td>
<td><span class="desc-text">Active regulatory prediction markets across Polymarket and Kalshi</span></td>
</tr>
<tr class="free-row">
<td><span class="method-badge method-get">GET</span><span class="endpoint-path">/health</span></td>
<td><span class="price-tag price-free">FREE</span></td>
<td><span class="desc-text">API health, version, and network status</span></td>
</tr>
<tr class="free-row">
<td><span class="method-badge method-get">GET</span><span class="endpoint-path">/pricing</span></td>
<td><span class="price-tag price-free">FREE</span></td>
<td><span class="desc-text">Machine-readable pricing JSON for all endpoints</span></td>
</tr>
</tbody>
</table>
</div>
<!-- Agent utility tier -->
<div class="pricing-group">
<div class="pricing-group-title">Agent Utility Tier — $0.001 – $0.005</div>
<table class="pricing-table">
<thead>
<tr><th>Endpoint</th><th>Price</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<td><span class="method-badge method-get">GET</span><span class="endpoint-path">/v1/util/crypto/price</span></td>
<td><span class="price-tag price-low">$0.001</span></td>
<td><span class="desc-text">Token price lookup with 24h change, market cap, volume</span></td>
</tr>
<tr>
<td><span class="method-badge method-get">GET</span><span class="endpoint-path">/v1/util/crypto/balance</span></td>
<td><span class="price-tag price-low">$0.001</span></td>
<td><span class="desc-text">Wallet ETH and USDC balance on Base L2</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/util/rss</span></td>
<td><span class="price-tag price-low">$0.002</span></td>
<td><span class="desc-text">RSS/Atom feed to structured JSON with parsed entries</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/util/scrape</span></td>
<td><span class="price-tag price-low">$0.005</span></td>
<td><span class="desc-text">URL to clean structured text — HTML parsed, scripts removed</span></td>
</tr>
</tbody>
</table>
</div>
<!-- Micro tier -->
<div class="pricing-group">
<div class="pricing-group-title">Micro Tier — $0.10 – $1.00</div>
<table class="pricing-table">
<thead>
<tr><th>Endpoint</th><th>Price</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<td><span class="method-badge method-get">GET</span><span class="endpoint-path">/v1/markets/feed</span></td>
<td><span class="price-tag price-low">$0.10</span></td>
<td><span class="desc-text">Micro regulatory event feed matched to prediction markets</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/markets/events</span></td>
<td><span class="price-tag price-low">$0.50</span></td>
<td><span class="desc-text">Classified regulatory events from SEC, CFTC, Fed, FinCEN</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/regulatory/changes</span></td>
<td><span class="price-tag price-low">$1.00</span></td>
<td><span class="desc-text">Recent regulatory changes classified by agency and impact</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/regulatory/query</span></td>
<td><span class="price-tag price-low">$1.00</span></td>
<td><span class="desc-text">Regulatory Q&A with statutory citations</span></td>
</tr>
</tbody>
</table>
</div>
<!-- Standard tier -->
<div class="pricing-group">
<div class="pricing-group-title">Standard Tier — $2.00 – $5.00</div>
<table class="pricing-table">
<thead>
<tr><th>Endpoint</th><th>Price</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/markets/signal/{market_id}</span></td>
<td><span class="price-tag price-mid">$2.00</span></td>
<td><span class="desc-text">Scored regulatory signal for one prediction market</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/regulatory/scan</span></td>
<td><span class="price-tag price-mid">$2.00</span></td>
<td><span class="desc-text">Full regulatory risk scan against all applicable frameworks</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/regulatory/jurisdiction</span></td>
<td><span class="price-tag price-mid">$3.00</span></td>
<td><span class="desc-text">Jurisdiction comparison with compliance cost modeling</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/markets/signals</span></td>
<td><span class="price-tag price-mid">$5.00</span></td>
<td><span class="desc-text">Bulk scored signals for all regulatory prediction markets</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/oracle/uma</span></td>
<td><span class="price-tag price-mid">$5.00</span></td>
<td><span class="desc-text">UMA Optimistic Oracle assertion data with evidence chain</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/oracle/chainlink</span></td>
<td><span class="price-tag price-mid">$5.00</span></td>
<td><span class="desc-text">Chainlink External Adapter response format</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/fed/signal</span></td>
<td><span class="price-tag price-mid">$5.00</span></td>
<td><span class="desc-text">Pre-FOMC signal with rate probabilities and Fed speech analysis</span></td>
</tr>
</tbody>
</table>
</div>
<!-- Premium tier -->
<div class="pricing-group">
<div class="pricing-group-title">Premium Tier — $10.00 – $50.00</div>
<table class="pricing-table">
<thead>
<tr><th>Endpoint</th><th>Price</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/markets/alpha</span></td>
<td><span class="price-tag price-high">$10.00</span></td>
<td><span class="desc-text">Premium alpha report with edge analysis, Kelly sizing, trade verdict</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/markets/resolution</span></td>
<td><span class="price-tag price-high">$25.00</span></td>
<td><span class="desc-text">Professional resolution verdict for prediction market settlement</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/fed/decision</span></td>
<td><span class="price-tag price-high">$25.00</span></td>
<td><span class="desc-text">Real-time FOMC decision classification within 30 seconds of release</span></td>
</tr>
<tr>
<td><span class="method-badge method-post">POST</span><span class="endpoint-path">/v1/fed/resolution</span></td>
<td><span class="price-tag price-premium">$50.00</span></td>
<td><span class="desc-text">FOMC resolution verdict for UMA/Kalshi/Polymarket oracle submission</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- ── Trading Bots ── -->
<section id="bots">
<div class="container">
<div class="two-col">
<div>
<div class="section-label">Automation</div>
<h2 class="section-title">Built for Trading Bots</h2>
<p class="section-desc" style="margin-bottom: 20px;">
HYDRA is designed as infrastructure for automated prediction market
strategies — not a dashboard you log into. Every response is
structured JSON optimized for programmatic consumption.
</p>
<p class="section-desc" style="margin-bottom: 28px;">
The x402 protocol lets your bot discover pricing, pay, and receive
data in a single automated loop — no human in the loop, no API key
rotation, no subscription management.
</p>
<a href="/docs" class="btn btn-primary">Read the API Docs</a>
</div>
<div>
<div class="feature-card" style="margin-bottom: 16px;">
<h3 style="font-size: 15px; margin-bottom: 8px;">Discovery via /.well-known/x402.json</h3>
<p>AI agents and bots can discover all endpoints, prices, and payment details automatically. No manual configuration — just point your agent at the service URL.</p>
</div>
<div class="feature-card" style="margin-bottom: 16px;">
<h3 style="font-size: 15px; margin-bottom: 8px;">Structured Signal Output</h3>
<p>Every signal includes a numeric score, directional bias, confidence interval, and a plain-language rationale — ready to feed directly into your position-sizing logic.</p>
</div>
<div class="feature-card">
<h3 style="font-size: 15px; margin-bottom: 8px;">Kelly-Sized Alpha Reports</h3>
<p>The <code style="font-family: var(--mono); font-size: 12px; color: var(--accent);">/v1/markets/alpha</code> endpoint delivers edge estimates with Kelly Criterion sizing recommendations — not just raw data.</p>
</div>
</div>
</div>
<div class="feature-grid" style="margin-top: 48px;">
<div class="feature-card">
<div class="feature-icon">📡</div>
<h3>Live Feed Monitoring</h3>
<p>Continuous ingestion from SEC press releases, CFTC enforcement, FinCEN notices, and Fed speeches. Events are classified by impact and matched to open prediction markets.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3>Market-Specific Signals</h3>
<p>Each Polymarket or Kalshi market gets a tailored regulatory signal — not a generic news feed. The signal reflects the specific question the market is resolving.</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3>FOMC Speed Advantage</h3>
<p>The Fed decision endpoint classifies FOMC statements within 30 seconds of release — before most markets reprice. Critical edge for rate-sensitive prediction markets.</p>
</div>
<div class="feature-card">
<div class="feature-icon">💳</div>
<h3>Atomic Payments</h3>
<p>x402 payments settle on Base in ~2 seconds. Your bot can call, pay, and receive a signal before most traditional APIs have finished authenticating.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔎</div>
<h3>SEC Enforcement Alerts</h3>
<p>SEC litigation releases and proposed rules are monitored for market-moving events — crypto enforcement actions, securities rulemaking, and whistleblower settlements.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3>Bulk Signal Batching</h3>
<p>The <code style="font-family: var(--mono); font-size: 12px; color: var(--accent);">/v1/markets/signals</code> endpoint scores all active regulatory markets in a single $5.00 call — more efficient than per-market requests at scale.</p>
</div>
</div>
</div>
</section>
<!-- ── Oracle Section ── -->
<section id="oracle">
<div class="container">
<div class="section-label">Oracle Integration</div>
<h2 class="section-title">Resolution-as-a-Service</h2>
<p class="section-desc">
HYDRA generates oracle-ready resolution verdicts for on-chain prediction markets.
Structured outputs for UMA Optimistic Oracle and Chainlink External Adapters —
with a full evidence chain for dispute resolution.
</p>
<div class="oracle-cards">
<div class="oracle-card">
<div class="oracle-header">
<div class="oracle-logo uma-logo">UMA</div>
<div>
<div style="font-weight: 700; font-size: 16px;">UMA Optimistic Oracle</div>
<div style="font-size: 12px; color: var(--muted);">Assertion data + evidence chain</div>
</div>
</div>
<p>
Submit regulatory resolution assertions to UMA's Optimistic Oracle with
full evidence chains. HYDRA formats the assertion, supporting citations,
and confidence score in the exact structure required for UMA assertion
submission — reducing dispute risk.
</p>
<div class="endpoint-ref">
<span class="path">POST /v1/oracle/uma</span>