Home
About Us
Packages
Use Cases
Contact
FAQ
Snapshot Report
Blog
Blog
Why AI Receptionists are Revolutionizing Business Calls
By Marcus Wiggs
•
September 16, 2025
Introduction to AI Receptionists in Business
The Importance of Local SEO for Business Growth
By Marcus Wiggs
•
September 12, 2025
Understanding Local SEO and Its Role in Modern Business
Make the most of the season by following these simple guidelines
By marcus
•
August 28, 2025
The new season is a great reason to make and keep resolutions. Whether it’s eating right or cleaning out the garage, here are some tips for making and keeping resolutions.
Keep in touch with site visitors and boost loyalty
By marcus
•
August 28, 2025
There are so many good reasons to communicate with site visitors. Tell them about sales and new products or update them with tips and information.
Tips for writing great posts that increase your site traffic
By marcus
•
August 28, 2025
Write about something you know. If you don’t know much about a specific topic that will interest your readers, invite an expert to write about it.
Home
About Us
Packages
Use Cases
Contact
FAQ
Snapshot Report
Blog
// worker.js const VEND_API_BASE = 'https://api.your-vendasta-endpoint.com/v1/feeds'; const FEED_ID = 'CCA-C2F65B83B82249A5B34FC98A6C091BC2'; // <- your feed id const API_KEY = 'YOUR_SECRET_API_KEY'; // keep server-side only export default { async fetch(request) { if (request.method !== 'GET') { return new Response('Method Not Allowed', { status: 405 }); } // Example: first 10 posts; tweak params to match Vendasta API const url = `${VEND_API_BASE}/${FEED_ID}/posts?limit=10`; const upstream = await fetch(url, { headers: { 'Authorization': `Bearer ${API_KEY}`, 'Accept': 'application/json' } }); const body = await upstream.text(); return new Response(body, { status: upstream.status, headers: { 'Content-Type': 'application/json', 'Access-Control-Allow-Origin': '*', 'Cache-Control': 'public, max-age=300' } }); } };