Vouchley documentation

View tutorials and documentation

Fetching review data

You can fetch the following information about a Vouchley review:

  • Deal message String

    The message title of the deal

  • Deal description String

    Description of the deal

  • Review rating Integer

    The rating of the review

  • Sender Object

    Object containing sender's info

  • Receiver Object

    Object containing receiver's info

  • Review date Date/Time

    The date the review was made

  • Deal platform String

    The platform where the deal was made

  • Reviewed product String

    The product the user has reviewed

Getting a review's ID

You can find a review's unique ID by clicking 'Share' on the review, then copying the ID from the URL.

Example URL

https://www.vouchley.com/api/v1/review?id=19fe4349-628d-4118-aae9-6555b9964d9b

Example response (JSON)

{
  "review": {
    "message": "Amazing user, would recommend!",
    "description": "Sold them a CS:GO Knife skin! This user is amazing, I would recommend them to anyone!",
    "rating": 5.0,
    "sender": "{ ... }", // Same information from /user endpoint
    "receiver": "{ ... }", // Same information from /user endpoint
    "time_sent": "2023-08-10 19:02:49.298144+00",
    "platform": "Discord (Direct messages)",
    "product": "Website Development",
  },
  "error": {
    "message": null,
    "code": 200
  }
}
Need more help? Join our Discord server for support!
Join Discord