WeddingWire is the nation’s leading technology company serving the $100+ billion wedding, corporate, and social events industry. Launched in 2007, WeddingWire is the largest and most trusted online marketplace connecting merchants with engaged couples and party planners. Moreover, WeddingWire’s SaaS business platform powers the front and back-office for tens of thousands of event merchants, from venues and photographers to caterers and entertainers.
Read operations
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.weddingwire.com/biz/the-wedding-traveler-boca-raton/92ade1421458d31f.html"}'
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.weddingwire.com/biz/the-wedding-traveler-boca-raton/92ade1421458d31f.html",
"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
"location": 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.weddingwire.com/biz/sara-zarrella-photography-exeter/f8269d035dd380f0.html"
}
Base URL : https://justlikeapi.io/reviews/verify
Parameter content type: application/json
Response
{
"valid": true,
"title": "Sara Zarrella Photography",
"address": "4 Gerald's Farm Drive Exeter, RI, 02822",
"phoneNumber": "401-341-1963",
"websiteURL": "http://www.sarazarrella.com/",
"categories": "Wedding Photographers",
"description": "We are honored to have been (...)",
"reviewCount": 114,
"rating": 5.0,
"openingHours": null,
"specialities": null
}
