-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
211 lines (199 loc) · 12 KB
/
index.html
File metadata and controls
211 lines (199 loc) · 12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lulzasaur - Marketplace Data APIs for Trading Cards, Music Gear & Local Services</title>
<meta name="description" content="Search TCGPlayer trading card prices, Reverb music gear listings, and Thumbtack local services via REST API or MCP server. Free tier available. Real-time marketplace data for developers.">
<meta name="keywords" content="TCGPlayer API, Reverb API, Thumbtack API, trading card prices API, music gear API, local services API, marketplace scraper, MCP server, marketplace data, Pokemon card prices, Magic the Gathering prices, guitar prices API">
<meta name="author" content="Lulzasaur">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://lulzasaur9192.github.io/">
<!-- Open Graph -->
<meta property="og:title" content="Lulzasaur - Marketplace Data APIs">
<meta property="og:description" content="REST APIs and MCP server for searching TCGPlayer trading cards, Reverb music gear, and Thumbtack local services. Real-time prices, ratings, and listings.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://lulzasaur9192.github.io/">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Lulzasaur - Marketplace Data APIs">
<meta name="twitter:description" content="Search trading cards, music gear, and local services via API. Free tier available.">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Lulzasaur Marketplace Search API",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"description": "REST APIs and MCP server for searching marketplace data across TCGPlayer, Reverb, and Thumbtack. Real-time prices, ratings, and listings for developers.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"description": "Free tier with 500 requests/month"
},
"author": {
"@type": "Organization",
"name": "Lulzasaur",
"url": "https://lulzasaur9192.github.io"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Lulzasaur",
"url": "https://lulzasaur9192.github.io",
"description": "Marketplace data APIs and scraping tools for trading cards, music gear, local services, and more."
}
</script>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a1a2e; background: #f8f9fa; }
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: white; padding: 80px 20px; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 16px; }
.hero p { font-size: 1.2rem; opacity: 0.85; max-width: 650px; margin: 0 auto 24px; line-height: 1.6; }
.hero .cta { display: inline-block; padding: 14px 32px; background: #e94560; color: white; text-decoration: none; border-radius: 8px; font-size: 1rem; font-weight: 600; margin: 4px; }
.hero .cta:hover { background: #d63851; }
.hero .cta.secondary { background: transparent; border: 2px solid rgba(255,255,255,0.4); }
.hero .cta.secondary:hover { border-color: white; }
.products { max-width: 960px; margin: -40px auto 60px; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: white; border-radius: 12px; padding: 32px 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); transition: transform 0.2s; }
.card:hover { transform: translateY(-4px); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: 0.95rem; color: #555; line-height: 1.6; }
.card .fields { font-size: 0.82rem; color: #777; margin-top: 10px; }
.card .tag { display: inline-block; background: #e8f4f8; color: #0f3460; font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; margin-top: 12px; font-weight: 600; }
.card a { color: #0f3460; text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-block; margin-top: 12px; }
.card a:hover { text-decoration: underline; }
.section { max-width: 960px; margin: 0 auto 60px; padding: 0 20px; }
.section h2 { font-size: 1.5rem; margin-bottom: 16px; }
.section p { color: #555; line-height: 1.7; }
.code-block { background: #1a1a2e; color: #a8d8ea; padding: 20px; border-radius: 8px; font-family: 'SF Mono', Monaco, monospace; font-size: 0.85rem; overflow-x: auto; margin: 16px 0; line-height: 1.6; }
.platforms { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 16px; }
.platform-link { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: white; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-decoration: none; color: #1a1a2e; font-weight: 600; font-size: 0.95rem; transition: box-shadow 0.2s; }
.platform-link:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.platform-link .badge { font-size: 0.7rem; background: #22c55e; color: white; padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.use-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 16px; }
.use-case { padding: 20px; background: white; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.use-case h4 { margin-bottom: 6px; font-size: 1rem; }
.use-case p { font-size: 0.9rem; color: #666; line-height: 1.5; }
footer { text-align: center; padding: 40px 20px; color: #999; font-size: 0.85rem; border-top: 1px solid #eee; }
</style>
</head>
<body>
<div class="hero">
<h1>Lulzasaur</h1>
<p>Real-time marketplace data via REST API and MCP server. Search trading card prices, music gear listings, and local service pros. Free tier available.</p>
<a class="cta" href="https://rapidapi.com/lulzasaur9192/api/tcgplayer-price-data">Get API Key (Free)</a>
<a class="cta secondary" href="https://www.npmjs.com/package/@lulzasaur9192/marketplace-search-mcp">Install MCP Server</a>
</div>
<div class="products">
<div class="card">
<h3>Trading Card Price Search</h3>
<p>Search TCGPlayer for card prices across Pokemon, Magic the Gathering, Yu-Gi-Oh, Lorcana, and 11 more game lines. Real-time market data.</p>
<div class="fields">Returns: market price, median price, lowest price, total listings, card image, set, rarity</div>
<span class="tag">REST API</span>
<a href="https://rapidapi.com/lulzasaur9192/api/tcgplayer-price-data">Try it free →</a>
</div>
<div class="card">
<h3>Music Gear Search</h3>
<p>Search Reverb.com for used and new instruments, amps, pedals, and synths. Filter by condition, price, and category.</p>
<div class="fields">Returns: price, condition, make, model, year, seller, photos, listing URL</div>
<span class="tag">REST API</span>
<a href="https://rapidapi.com/lulzasaur9192/api/reverb-music-gear-listings">Try it free →</a>
</div>
<div class="card">
<h3>Local Services Search</h3>
<p>Search Thumbtack for plumbers, electricians, cleaners, and 1000+ service categories with location filtering.</p>
<div class="fields">Returns: rating, reviews, pricing, hire count, services, licensing, response time</div>
<span class="tag">REST API</span>
<a href="https://rapidapi.com/lulzasaur9192/api/thumbtack-pro-directory">Try it free →</a>
</div>
</div>
<div class="section">
<h2>Quick Start</h2>
<p>Call any endpoint with a simple GET request. All APIs return JSON with consistent structure.</p>
<div class="code-block">
<span style="color:#888">// Search for Pokemon cards</span>
GET /tcgplayer/search?query=charizard&limit=5
<span style="color:#888">// Search for guitars on Reverb</span>
GET /reverb/search?query=fender+stratocaster&limit=10
<span style="color:#888">// Find plumbers in Austin</span>
GET /thumbtack/search?query=plumbers&location=austin-tx&limit=10
</div>
<p>Or use the MCP server directly in Claude, Cursor, or any MCP-compatible AI tool:</p>
<div class="code-block">
npm install -g @lulzasaur9192/marketplace-search-mcp
</div>
</div>
<div class="section">
<h2>Use Cases</h2>
<div class="use-cases">
<div class="use-case">
<h4>Price Monitoring</h4>
<p>Track card values, gear prices, and service rates over time. Build alerts for price drops.</p>
</div>
<div class="use-case">
<h4>Reseller Tools</h4>
<p>Find underpriced listings, compare across marketplaces, and calculate profit margins.</p>
</div>
<div class="use-case">
<h4>Market Research</h4>
<p>Analyze pricing trends, demand patterns, and competitive landscapes with structured data.</p>
</div>
<div class="use-case">
<h4>AI Agent Integrations</h4>
<p>Give your AI agents real-time marketplace access via MCP. Works with Claude, Cursor, and Windsurf.</p>
</div>
<div class="use-case">
<h4>Lead Generation</h4>
<p>Find service providers by location, rating, and category. Build contractor directories.</p>
</div>
<div class="use-case">
<h4>Inventory Valuation</h4>
<p>Price card collections and gear inventories at scale with current market data.</p>
</div>
</div>
</div>
<div class="section">
<h2>Available On</h2>
<div class="platforms">
<a class="platform-link" href="https://rapidapi.com/user/lulzasaur9192">RapidAPI <span class="badge">LIVE</span></a>
<a class="platform-link" href="https://mcpize.com/mcp/marketplace-search">MCPize <span class="badge">LIVE</span></a>
<a class="platform-link" href="https://apify.com/lulzasaur">Apify Store <span class="badge">LIVE</span></a>
<a class="platform-link" href="https://smithery.ai/server/@lulzasaur9192/marketplace-search-mcp">Smithery <span class="badge">LIVE</span></a>
<a class="platform-link" href="https://www.npmjs.com/package/@lulzasaur9192/marketplace-search-mcp">npm <span class="badge">LIVE</span></a>
<a class="platform-link" href="https://github.com/lulzasaur9192/marketplace-search-mcp">GitHub</a>
</div>
</div>
<div class="section">
<h2>Pricing</h2>
<p>All APIs include a free tier. Scale up as you grow.</p>
<div class="use-cases">
<div class="use-case">
<h4>Free</h4>
<p>500 requests/month. Perfect for testing and personal projects.</p>
</div>
<div class="use-case">
<h4>Pro - $9.99/mo</h4>
<p>5,000 requests/month. For side projects and small apps.</p>
</div>
<div class="use-case">
<h4>Ultra - $29.99/mo</h4>
<p>25,000 requests/month. For growing businesses and production apps.</p>
</div>
<div class="use-case">
<h4>Mega - $99.99/mo</h4>
<p>100,000 requests/month. For high-volume and enterprise use.</p>
</div>
</div>
</div>
<footer>
© 2026 Lulzasaur. All rights reserved. |
<a href="mailto:lulzasaur9192@gmail.com" style="color:#777">Contact</a>
</footer>
</body>
</html>