Stellastra Reviews API
Stellastra makes it easy to get reviews for your cybersecurity solution in real-time with its platform-agnostic REST API.
The review process is straightforward:
Ⅰ - Your user leaves one or multiple star ratings for your solution. This could be integrated to your website, solution portal, app, notification, newsletter, or email.
ⅠⅠ - You forward this review to us automatically via a secure API call 🔒 and Stellastra forwards the review to the user's business email ✉ for verification ✅.
ⅠⅠⅠ - The user clicks the verification link, authenticating the review.
From: [email protected]
Subject: Your Solution Review Confirmation
Stellastra Cybersecurity Reviews
Hello John,
Thank you for leaving a review for "Your Solution".
Click the Verify Review link below and your review will be submitted.
Verify ReviewYou can also paste the following directly into your browser:
https://stellastra.com/verify-email/0a86f24c620f24f228
Getting started is quick and easy, generate an API key using the link below, then return here and follow the instructions below..
Machine-readable OpenAPI 3.0 DescriptionGenerate API Key
The solution name and redirect URL properties are tied to your API key you set above.
Stellastra works with any API call, the following are thus illustrative examples for different languages.
import responses
body = {
user_email = "[email protected]",
user_name = "John",
star_rated_color = "#e7711b",
}
destination = "https://stellastra.com/api/post-review"
your_auth_email = "[email protected]"
key = "b371880dc4cc9f19dcd7241bb1aad9cc2700ab113735f45f50835785d65be292f4b3376a0ee0"
response = requests.post(destination, auth=(your_auth_email, key), data=body)
async function post_review_to_stellastra(your_auth_email, key, body) {
try {
const axios = require("axios");
const url = "https://stellastra.com/api/post-review";
const response = await axios.post(url, body, {auth:{username: your_auth_email, password: key}});
return response;
}
catch (e) {
return e.response
}
}
async function main() {
const your_auth_email = "[email protected]"
const key = "b371880dc4cc9f19dcd7241bb1aad9cc2700ab113735f45f50835785d65be292f4b3376a0ee0"
const body = {
user_email: "[email protected]",
user_name: "John",
star_rated_color: "#e7711b"
}
}
const result = await post_review_to_stellastra(your_auth_email, key, body)
main()