-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_admin.html
More file actions
81 lines (76 loc) · 2.61 KB
/
Copy pathapi_admin.html
File metadata and controls
81 lines (76 loc) · 2.61 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
<!DOCTYPE html>
<html>
<head>
<title>KBI Labs API Admin</title>
<style>
body { font-family: Arial, sans-serif; max-width: 1200px; margin: 0 auto; padding: 20px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 20px 0; }
.stat-card { background: #f0f0f0; padding: 20px; border-radius: 8px; text-align: center; }
.stat-value { font-size: 32px; font-weight: bold; color: #2ecc71; }
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
.key { font-family: monospace; background: #f0f0f0; padding: 2px 5px; border-radius: 3px; }
</style>
</head>
<body>
<h1>🎯 KBI Labs API Management</h1>
<div class="stats">
<div class="stat-card">
<div class="stat-value">64,799</div>
<div>Total Companies</div>
</div>
<div class="stat-card">
<div class="stat-value">30,531</div>
<div>Without Websites</div>
</div>
<div class="stat-card">
<div class="stat-value">$763M</div>
<div>Market Opportunity</div>
</div>
<div class="stat-card">
<div class="stat-value">3</div>
<div>Active API Keys</div>
</div>
</div>
<h2>API Keys</h2>
<table>
<tr>
<th>Key</th>
<th>Tier</th>
<th>Daily Limit</th>
<th>Calls Today</th>
<th>Status</th>
</tr>
<tr>
<td><span class="key">demo-trial-key</span></td>
<td>Trial</td>
<td>100</td>
<td>0</td>
<td>✅ Active</td>
</tr>
<tr>
<td><span class="key">demo-basic-key</span></td>
<td>Basic ($99/mo)</td>
<td>1,000</td>
<td>0</td>
<td>✅ Active</td>
</tr>
<tr>
<td><span class="key">demo-pro-key</span></td>
<td>Professional ($299/mo)</td>
<td>10,000</td>
<td>0</td>
<td>✅ Active</td>
</tr>
</table>
<h2>Test Your API</h2>
<pre>
# Test with trial key
curl -H "X-Api-Key: demo-trial-key" http://3.143.232.123:8000/api/v1/digital-gap/stats
# Get Texas opportunities
curl -H "X-Api-Key: demo-basic-key" "http://3.143.232.123:8000/api/v1/digital-gap/companies?state=Texas&limit=5"
# Export high-value prospects
curl -H "X-Api-Key: demo-pro-key" "http://3.143.232.123:8000/api/v1/digital-gap/companies?opportunity_level=HIGH&limit=100"
</pre>
</body>
</html>