curl --request GET \
--url https://api.example.com/v1/session-feedback \
--header 'Authorization: <api-key>'import requests
url = "https://api.example.com/v1/session-feedback"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.example.com/v1/session-feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/session-feedback",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/session-feedback"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/session-feedback")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/session-feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"rating": 123,
"session_id": "<string>",
"tutor_id": "<string>",
"recommend": true,
"prepared": true,
"positive_tags": [],
"improve_tags": [],
"comment": "<string>",
"is_public": false,
"reviewer_role": "<string>",
"reviewer_name": "<string>",
"created_at": "<string>"
}
],
"meta": {
"limit": 123,
"offset": 123,
"count": 123,
"total": 123,
"next_cursor": "<string>"
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}List Session Feedback
Lesson feedback for the org’s tutors, newest first (owner/admin view —
attributed). session_feedback.organization_id is stamped at submit time, so
rows scope directly to this org. Pass anonymize=true to return a first-name +
initial instead of the full reviewer name when re-publishing externally.
Note: legacy tutor_reviews migrated into session_feedback carry a NULL
organization_id (they predate org scoping) and are intentionally NOT returned
here — they belong to no org. Backfilling them to a tutor’s current org would
mis-attribute pre-org personal reviews, so the exclusion is by design.
curl --request GET \
--url https://api.example.com/v1/session-feedback \
--header 'Authorization: <api-key>'import requests
url = "https://api.example.com/v1/session-feedback"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.example.com/v1/session-feedback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/session-feedback",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/session-feedback"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/session-feedback")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/session-feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"rating": 123,
"session_id": "<string>",
"tutor_id": "<string>",
"recommend": true,
"prepared": true,
"positive_tags": [],
"improve_tags": [],
"comment": "<string>",
"is_public": false,
"reviewer_role": "<string>",
"reviewer_name": "<string>",
"created_at": "<string>"
}
],
"meta": {
"limit": 123,
"offset": 123,
"count": 123,
"total": 123,
"next_cursor": "<string>"
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}{
"error": {
"code": "not_found",
"message": "Session not found",
"status": 404,
"details": {}
}
}Authorizations
Org API key as Token token=ei_live_...
Query Parameters
Filter by tutor user UUID
Only feedback the author made public
Return reviewer initials instead of full names
Opaque cursor from a previous response's meta.next_cursor, or the literal 'start' to begin cursor paging from the newest record. When set, offset is ignored and results page by a stable (created_at, id) keyset — recommended for large or incremental syncs.
Records per page (default 20, max 100)
1 <= x <= 100Pagination offset (ignored when cursor is set)
x >= 0Response
Successful Response
Show child attributes
Show child attributes
Pagination envelope metadata. count is the size of the returned page;
total (when present) is the full result-set size for offset paging.
In cursor mode offset/total are absent and next_cursor carries the
opaque token for the next page (null on the last page).
Show child attributes
Show child attributes
Was this page helpful?