Using the Vouchley API

The Vouchley API allows you to fetch information about users and reviews from your own app/website.

Just so you know!

You need an API key in order to use the Vouchley API!

You can request your API key here.

Getting started with the Vouchley API

Fetch a review

Fetch a review by its ID.

Fetch a user

Fetch a user by their ID.

Example of fetching data

axios.get('https://www.vouchley.com/api/v1/review?id=ITEM_ID', {
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
})
.then(response => console.log(response.data))
.catch(error => console.error('Axios error:', error));
Need help with the API? Read the API docs!
Read docs