WedStay
info@thewedstay.com

Subscribe to our newsletter

By subscribing, you agree to receive emails and texts from WedStay. Unsubscribe anytime.

For Everyone

  • About Us
  • How It Works
  • Download App
  • Blog
  • Reviews
  • FAQs
  • Terms
  • Privacy
  • Contact
  • We're Hiring!
  • Sitemap

For Couples

  • Wedding Venues
  • Wedding Venue Buyout
  • Wedding House Rentals
  • How WedStay Works
  • Wedding Venue Finder
  • Wedding Quizzes
  • Venue Style Quiz
  • How Venue Matcher Works
  • 2025 Wedding Trends
  • Viral Wedding Estates
  • Wedding Vendors
  • Wedding Inspiration
  • Non-Traditional Weddings
  • Wedding Weekend Experience
  • Wedding Planning Checklist Tool
  • WedStay-Style Weddings
  • Venue Cost Calculator
  • Wedding Financing

For Property Owners

  • Submit Your Property
  • Wedding Industry Insights
  • Revenue Opportunities
  • WedStay Operating System
  • Property Transformation
  • Effortless Hosting
  • Top Wedding Trends

For Vendors

  • Join The WedStay Collective
  • Wedding Vendors
  • Wedding Photographers
  • The Ultimate Wedding Vendor Guide: A Former Bride's Tell-All

© 2026 WedStay. All rights reserved.

This site is not affiliated with or endorsed by Airbnb.

    WedStay Developers
    WedStay Developers
    API Referencethewedstay.com

    Getting Started

    WedStay APIQuickstart

    Endpoints

    VenuesVendorsPricingBlogInquiries

    Reference

    ErrorsRate Limits

    Integrations

    MCP ServerChatGPT ActionBuilding AI-Powered Widgets

    Blog

    Search and fetch WedStay wedding blog content — posts, tags, and full plaintext bodies for AI agents and content integrations.

    Blog

    WedStay's blog covers wedding planning, trends, venue features, and DIY tips. The blog endpoints let you list, filter, and fetch full post bodies for use in chatbots, planning apps, or content syndication.

    Endpoints

    MethodPathDescription
    GET/v1/blog/postsSearch and filter blog posts
    GET/v1/blog/posts/{slug}Get a single post with plaintext body
    GET/v1/blog/tagsList all tags with post counts

    All endpoints require a Bearer API key.

    Search posts

    Recent posts tagged 'wedding-trends-2026'
    curl -X GET "https://www.thewedstay.com/api/v1/blog/posts?tag=wedding-trends-2026&limit=10" \
      -H "Authorization: Bearer ws_live_..."
    ParameterTypeRequiredDescription
    tagstringNoGhost tag slug (call /v1/blog/tags to discover)
    searchstringNoFree-text keyword match against title/excerpt
    featuredbooleanNoOnly return featured posts
    limitnumberNo1-25, default 10
    pagenumberNo1-based page number, default 1

    Each post in the response includes: slug, title, excerpt, feature_image, published_at, reading_time, tags[], primary_author, and a canonical url.

    Get a post

    curl -X GET "https://www.thewedstay.com/api/v1/blog/posts/top-wedding-trends-2026" \
      -H "Authorization: Bearer ws_live_..."

    Returns all list-item fields plus word_count and content_plaintext — a Ghost-rendered plaintext body that's roughly 30% the token count of the HTML.

    List tags

    curl -X GET "https://www.thewedstay.com/api/v1/blog/tags" \
      -H "Authorization: Bearer ws_live_..."

    Returns { slug, name, post_count } sorted by post_count descending. Tags with zero active posts are omitted.

    Use it via ChatGPT / MCP

    These endpoints are the REST mirror of the MCP search_blog_posts, get_blog_post, and list_blog_tags tools. ChatGPT custom actions that import https://www.thewedstay.com/api/v1/openapi.json will see them automatically.

    Previous

    Pricing

    Next

    Inquiries

    On this page

    BlogEndpointsSearch postsGet a postList tagsUse it via ChatGPT / MCP