WedStay
info@thewedstay.com

Subscribe to our newsletter

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
  • Preferred Vendor Marketplace
  • 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 Wedstay Vendor Network
  • Preferred Vendor Marketplace
  • 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

    VenuesVendorsPricingInquiries

    Reference

    ErrorsRate Limits

    Integrations

    MCP ServerChatGPT Action

    Inquiries

    Submit venue booking requests and vendor contact inquiries through the WedStay API.

    Inquiry Endpoints

    Submit booking requests to venues and contact inquiries to vendors. These create real leads that property owners and vendors respond to within 24-48 hours.

    Submit venue inquiry

    POST /api/v1/inquiries/venue

    Submit a booking request to a specific venue. The property owner will be notified immediately.

    Request body

    FieldTypeRequiredDescription
    property_slugstringYesThe venue's URL slug (from search results)
    start_datestringYesCheck-in date (ISO 8601: 2026-09-19)
    end_datestringYesCheck-out date (ISO 8601: 2026-09-22)
    event_guestsnumberYesNumber of event guests
    overnight_guestsnumberNoNumber of overnight guests
    guest_namestringYesFull name of the person inquiring
    guest_emailstringYesContact email address
    guest_phonestringNoContact phone number
    messagestringNoAdditional details or questions (max 5000 chars)

    Example request

    curl -X POST "https://www.thewedstay.com/api/v1/inquiries/venue" \
      -H "Authorization: Bearer ws_live_..." \
      -H "Content-Type: application/json" \
      -d '{
        "property_slug": "texas-wedding-village-...",
        "start_date": "2026-09-19",
        "end_date": "2026-09-22",
        "event_guests": 80,
        "overnight_guests": 30,
        "guest_name": "Sarah Johnson",
        "guest_email": "sarah@example.com",
        "guest_phone": "+1-555-0123",
        "message": "Looking for a weekend wedding with outdoor ceremony space."
      }'

    Example response

    {
      "data": {
        "inquiry_id": "550e8400-e29b-41d4-a716-446655440000",
        "status": "submitted",
        "message": "Your booking request has been submitted. A WedStay concierge will respond within 24 hours."
      },
      "request_id": "req_abc123def456"
    }

    Submit vendor inquiry

    POST /api/v1/inquiries/vendor

    Send a contact inquiry to a vendor. The vendor receives an email notification immediately.

    Request body

    FieldTypeRequiredDescription
    vendor_slugstringYesThe vendor's URL slug (from search results)
    guest_namestringYesFull name of the person inquiring
    guest_emailstringYesContact email address
    guest_phonestringNoContact phone number
    event_datestringNoEvent date (ISO 8601: 2026-09-20)
    event_locationstringNoWhere the event will be held
    event_guestsnumberNoGuest count
    budget_rangestringNoBudget range (e.g. "$3000-$5000")
    service_neededstringNoSpecific service needed
    messagestringNoDetails about what you need (max 5000 chars)

    Example request

    curl -X POST "https://www.thewedstay.com/api/v1/inquiries/vendor" \
      -H "Authorization: Bearer ws_live_..." \
      -H "Content-Type: application/json" \
      -d '{
        "vendor_slug": "golden-hour-studios",
        "guest_name": "Sarah Johnson",
        "guest_email": "sarah@example.com",
        "event_date": "2026-09-20",
        "event_location": "Canyon Lake, Texas",
        "message": "Need a photographer for a 3-day weekend wedding, 80 guests."
      }'

    Example response

    {
      "data": {
        "inquiry_id": "550e8400-e29b-41d4-a716-446655440000",
        "status": "submitted",
        "message": "Your vendor inquiry has been submitted. The vendor typically responds within 48 hours."
      },
      "request_id": "req_abc123def456"
    }

    Rate limits

    Inquiry endpoints have stricter rate limits than read endpoints to prevent spam:

    TierVenue inquiriesVendor inquiries
    Free5 per day5 per day
    Pro50 per day50 per day

    What happens after submission

    1. The property owner or vendor receives an email notification immediately
    2. WedStay's concierge team is also notified for quality assurance
    3. Most inquiries receive a response within 24-48 hours
    4. The inquiry appears in the owner/vendor's WedStay dashboard

    Previous

    Pricing

    Next

    Errors

    On this page

    Inquiry EndpointsSubmit venue inquiryRequest bodyExample requestExample responseSubmit vendor inquiryRequest bodyExample requestExample responseRate limitsWhat happens after submission