Okendo
Search
K
Comment on page

Quick Start

The Merchant REST API API is not intended for client-side use.
For public and client-side use, see the Storefront REST API.

Get Your Credentials

Your API requests are authenticated using your Okendo User ID and an API Key. You can get these details from the integration settings section of the Okendo app.

Make Your First Request

To make your first request, send an authenticated request to the /reviews endpoint. This will fetch some of your published reviews.
get
https://api.okendo.io/enterprise
/reviews
List Reviews
To make the request, use a networking client of your choice or follow these examples:
cURL
Node.js
curl https://api.okendo.io/enterprise/reviews -u <okendo_user_id>:<api_key>
const https = require('https');
https.get('https://api.okendo.io/enterprise/reviews', { auth: '<okendo_user_id>:<api_key>' }, res => {
let body = '';
res.on('data', chunk => body += chunk);
res.on('end', () => {
const response = JSON.parse(body);
console.log(response.reviews);
});
});