API Reference
You can use our secure REST API to import your customer data, send review requests, export your reviews, and more!
Authentication
Your project has a secret API key that you can use to authenticate your requests. You can find your project’s API key, here.
Add your API key to the Authorization header of each request. For example:
"Authorization": "Bearer <API_KEY>"Endpoints
Customers
Reviews
Locations
Pagination
For requests that require pagination, a pagination key is added to the response. This key might look something like the following:
"pagination": {
"current_page": 2,
"path": "https://api.moregoodreviews.com/beacon/customers",
"first_page_url": "https://api.moregoodreviews.com/beacon/customers?page=1",
"last_page_url": "https://api.moregoodreviews.com/beacon/customers?page=3",
"prev_page_url": "https://api.moregoodreviews.com/beacon/customers?page=1",
"next_page_url": "https://api.moregoodreviews.com/beacon/customers?page=3",
"from": 51,
"to": 100,
"total": 110,
"per_page": 50,
"last_page": 3
}Last updated
Was this helpful?