curl --request POST \
--url https://api.moda.app/v1/feedback \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source": "voyager",
"kind": "user",
"message": "<string>",
"category": "other",
"user_quote": "<string>",
"context": {
"app_version": "<string>",
"platform": "<string>",
"arch": "<string>",
"provider": "<string>",
"model": "<string>",
"voyager_thread_id": "<string>",
"recent_errors": [
"<string>"
]
}
}
'import requests
url = "https://api.moda.app/v1/feedback"
payload = {
"source": "voyager",
"kind": "user",
"message": "<string>",
"category": "other",
"user_quote": "<string>",
"context": {
"app_version": "<string>",
"platform": "<string>",
"arch": "<string>",
"provider": "<string>",
"model": "<string>",
"voyager_thread_id": "<string>",
"recent_errors": ["<string>"]
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
source: 'voyager',
kind: 'user',
message: '<string>',
category: 'other',
user_quote: '<string>',
context: {
app_version: '<string>',
platform: '<string>',
arch: '<string>',
provider: '<string>',
model: '<string>',
voyager_thread_id: '<string>',
recent_errors: ['<string>']
}
})
};
fetch('https://api.moda.app/v1/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.moda.app/v1/feedback",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'source' => 'voyager',
'kind' => 'user',
'message' => '<string>',
'category' => 'other',
'user_quote' => '<string>',
'context' => [
'app_version' => '<string>',
'platform' => '<string>',
'arch' => '<string>',
'provider' => '<string>',
'model' => '<string>',
'voyager_thread_id' => '<string>',
'recent_errors' => [
'<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.moda.app/v1/feedback"
payload := strings.NewReader("{\n \"source\": \"voyager\",\n \"kind\": \"user\",\n \"message\": \"<string>\",\n \"category\": \"other\",\n \"user_quote\": \"<string>\",\n \"context\": {\n \"app_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"arch\": \"<string>\",\n \"provider\": \"<string>\",\n \"model\": \"<string>\",\n \"voyager_thread_id\": \"<string>\",\n \"recent_errors\": [\n \"<string>\"\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.moda.app/v1/feedback")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"source\": \"voyager\",\n \"kind\": \"user\",\n \"message\": \"<string>\",\n \"category\": \"other\",\n \"user_quote\": \"<string>\",\n \"context\": {\n \"app_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"arch\": \"<string>\",\n \"provider\": \"<string>\",\n \"model\": \"<string>\",\n \"voyager_thread_id\": \"<string>\",\n \"recent_errors\": [\n \"<string>\"\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.moda.app/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"source\": \"voyager\",\n \"kind\": \"user\",\n \"message\": \"<string>\",\n \"category\": \"other\",\n \"user_quote\": \"<string>\",\n \"context\": {\n \"app_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"arch\": \"<string>\",\n \"provider\": \"<string>\",\n \"model\": \"<string>\",\n \"voyager_thread_id\": \"<string>\",\n \"recent_errors\": [\n \"<string>\"\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "accepted"
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}Submit Feedback
Submit feedback from Voyager. Accepted with a reference id; nothing is returned later.
curl --request POST \
--url https://api.moda.app/v1/feedback \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source": "voyager",
"kind": "user",
"message": "<string>",
"category": "other",
"user_quote": "<string>",
"context": {
"app_version": "<string>",
"platform": "<string>",
"arch": "<string>",
"provider": "<string>",
"model": "<string>",
"voyager_thread_id": "<string>",
"recent_errors": [
"<string>"
]
}
}
'import requests
url = "https://api.moda.app/v1/feedback"
payload = {
"source": "voyager",
"kind": "user",
"message": "<string>",
"category": "other",
"user_quote": "<string>",
"context": {
"app_version": "<string>",
"platform": "<string>",
"arch": "<string>",
"provider": "<string>",
"model": "<string>",
"voyager_thread_id": "<string>",
"recent_errors": ["<string>"]
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
source: 'voyager',
kind: 'user',
message: '<string>',
category: 'other',
user_quote: '<string>',
context: {
app_version: '<string>',
platform: '<string>',
arch: '<string>',
provider: '<string>',
model: '<string>',
voyager_thread_id: '<string>',
recent_errors: ['<string>']
}
})
};
fetch('https://api.moda.app/v1/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.moda.app/v1/feedback",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'source' => 'voyager',
'kind' => 'user',
'message' => '<string>',
'category' => 'other',
'user_quote' => '<string>',
'context' => [
'app_version' => '<string>',
'platform' => '<string>',
'arch' => '<string>',
'provider' => '<string>',
'model' => '<string>',
'voyager_thread_id' => '<string>',
'recent_errors' => [
'<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.moda.app/v1/feedback"
payload := strings.NewReader("{\n \"source\": \"voyager\",\n \"kind\": \"user\",\n \"message\": \"<string>\",\n \"category\": \"other\",\n \"user_quote\": \"<string>\",\n \"context\": {\n \"app_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"arch\": \"<string>\",\n \"provider\": \"<string>\",\n \"model\": \"<string>\",\n \"voyager_thread_id\": \"<string>\",\n \"recent_errors\": [\n \"<string>\"\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.moda.app/v1/feedback")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"source\": \"voyager\",\n \"kind\": \"user\",\n \"message\": \"<string>\",\n \"category\": \"other\",\n \"user_quote\": \"<string>\",\n \"context\": {\n \"app_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"arch\": \"<string>\",\n \"provider\": \"<string>\",\n \"model\": \"<string>\",\n \"voyager_thread_id\": \"<string>\",\n \"recent_errors\": [\n \"<string>\"\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.moda.app/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"source\": \"voyager\",\n \"kind\": \"user\",\n \"message\": \"<string>\",\n \"category\": \"other\",\n \"user_quote\": \"<string>\",\n \"context\": {\n \"app_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"arch\": \"<string>\",\n \"provider\": \"<string>\",\n \"model\": \"<string>\",\n \"voyager_thread_id\": \"<string>\",\n \"recent_errors\": [\n \"<string>\"\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "accepted"
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}{
"type": "invalid_request",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"request_id": "<string>",
"causes": [
"<unknown>"
],
"details": {},
"retry_after_ms": 123,
"retryable": true
}Authorizations
API key from Settings > Developer > REST API
Headers
Calendar-dated API version pin. New integrations should pin 2026-05-01 to opt into the newest response shapes. For back-compat the server also accepts requests with no header and resolves them to the current default (today: 2026-04-12); that default advances on each sunset date. Any unsupported value returns 400 unsupported_version.
2026-04-12, 2026-05-01 "2026-05-01"
Body
Submitting application.
"voyager""voyager"
Who wrote the message: the person, or the agent reporting friction.
user, agent "user"
The feedback, free text or markdown.
1 - 5000Friction category: missing_tool, unclear_schema, confusing_docs, broken_behavior, repeated_failure or other. Anything else is recorded as other.
40Optional short quote of what the user asked for, when the agent is reporting.
500Build and session details Voyager attaches; every field optional and bounded.
Unknown fields are ignored (not forbidden) so a newer Voyager can attach a field
this Studio does not know yet without the whole submission failing. The thread
id is deliberately voyager_thread_id: the fan-out resolves a thread_id
key against LangSmith, and a Voyager thread is not a LangSmith trace.
Show child attributes
Show child attributes