The Knot Inc., Weddings for the Real World, is one of the world's leading wedding media and services companies, providing today's to-be-weds with comprehensive wedding planning information, interactive tools, and resources. With a fresh voice and real-world sensibility, The Knot has extended its brand to every venue brides and grooms turn to plan their weddings -- online at the #1 wedding website, TheKnot.com, and on newsstands and in bookstores nationwide.

Submitting the API request

This is sample CURL request you can use to test JustLikeAPI features.

Please make sure to replace:
- YOUR_API_KEY with the one you received from our support team
- PAGE_SPECIFIC_URL - with the endpoint of the method you're trying to invoke
- JSON payload - with the contents of your request (the sample payload for each request is given below)

curl -X POST https://api.justlikeapi.io/reviews/get -H 'authorization: Bearer YOUR_API_KEY' -H 'cache-control: no-cache' -H 'content-type: application/json' -d '{ "propertyUrl": "https://www.theknot.com/marketplace/the-lake-house-inn-perkasie-pa-869899"}'

Read operations

Get method will pull in reviews for platform of your choice. Reviews will be ordered by date and can include information from the code example bellow:

Request

{
"propertyUrl":"https://www.theknot.com/marketplace/the-lake-house-inn-perkasie-pa-869899",
"username":"happyWedding",
"password":"bridelovely"
"dateFrom":"2018-03-10", *
“reviewLimit”:”1″ **
}

*  "dateFrom" is optional

** “reviewLimit” is also optional (retrieves a specified number of reviews)

Base URL : https://justlikeapi.io/reviews/get

Parameter content type: application/json

Response

{
    "propertyName": "The Lake House Inn",
    "location": "1100 Old Bethlehem Road, Perkasie, PA",
    "ratingValue": "4.6",
    "ratingCount": "88",
    "reviews": [
        {
            "reviewId": "73dc7693-1b5a-4a2c-b1be-9bd9576f9a59",
            "customer": {
                "username": "Nicole Famularo",
                "location": null,
                "level": null
            },
            "title": "",
            "rating": "5",
            "text": "LHI speaks for itself!  Everything (...)",
            "reviewedOn": "2021-10-27",
            "photos": null,
            "repliedTo": false,
            "externalSource": null,
            "replies": null,
            "followUpReviews": null,
            "comments": null,
            "selfReview": null,
            "commentsCount": null,
            "reviewerPhoto": null
        }
    ]
}

Verify method will return propertyURL. This would be general information of that property. Bellow is a code example of request and response for Verify method:

Request

{
"propertyUrl":"https://www.theknot.com/marketplace/the-lake-house-inn-perkasie-pa-869899"
}

Base URL : https://justlikeapi.io/reviews/verify

Parameter content type: application/json

Response

{
    "valid": true,
    "title": "The Lake House Inn",
    "address": "1100 Old Bethlehem Road, Perkasie, PA",
    "phoneNumber": "(215) 258-2556",
    "websiteURL": "http://www.thelhi.com",
    "categories": "Guest Capacity Settings Venue Service Offerings, 300+ Ballroom, Barn, Beach, Waterfront, Estate, Garden, Historic Venue, Hotel, Loft, Mountain, Park Bar & Drinks, Cakes & Desserts, Destination Weddings, Destination Wedding Packages, Destination Wedding Planning, Food & Catering, Planning, Rentals & Equipment, Service Staff, Transportation, Shuttle Service",
    "description": "The Lake House Inn offers the luxury of a destination wedding without the air travel.  \nThe LHI is an AIA Award  Winning restored and updated 19th century Inn. One and Two Overnight Wedding Packages turn your Wedding Celebration into the Ultimate Slumber Party for 50-60 overnight guest and up to 300+  Reception guests.  \nB&B's and Hotels are located nearby for your reception guests to enjoy a night or weekend in Bucks County. \n\nOne and Two night Wedding Packages available.\n\nLakefront Ceremony Garden and Ballroom accommodates 300+ guests. \n\nPlease visit our website and contact us for pricing and to schedule a visit.",
    "reviewCount": 88,
    "rating": 4.6,
    "openingHours": null,
    "specialities": null
}