curl --request POST \
--url https://api.mnemom.ai/v1/feedback \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"title": "<string>",
"body": "<string>",
"consent_prompts": false,
"consent_diagnostics": false,
"consent_contact": false,
"context_bundle": {
"route_url": "<string>",
"app_version": "<string>",
"component": "<string>",
"breadcrumbs": [
"<unknown>"
],
"ai_prompts": "<unknown>",
"diagnostics": {}
},
"attachment_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"company_website": "<string>"
}
'import requests
url = "https://api.mnemom.ai/v1/feedback"
payload = {
"title": "<string>",
"body": "<string>",
"consent_prompts": False,
"consent_diagnostics": False,
"consent_contact": False,
"context_bundle": {
"route_url": "<string>",
"app_version": "<string>",
"component": "<string>",
"breadcrumbs": ["<unknown>"],
"ai_prompts": "<unknown>",
"diagnostics": {}
},
"attachment_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"company_website": "<string>"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
title: '<string>',
body: JSON.stringify('<string>'),
consent_prompts: false,
consent_diagnostics: false,
consent_contact: false,
context_bundle: {
route_url: '<string>',
app_version: '<string>',
component: '<string>',
breadcrumbs: ['<unknown>'],
ai_prompts: '<unknown>',
diagnostics: {}
},
attachment_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
company_website: '<string>'
})
};
fetch('https://api.mnemom.ai/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.mnemom.ai/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([
'title' => '<string>',
'body' => '<string>',
'consent_prompts' => false,
'consent_diagnostics' => false,
'consent_contact' => false,
'context_bundle' => [
'route_url' => '<string>',
'app_version' => '<string>',
'component' => '<string>',
'breadcrumbs' => [
'<unknown>'
],
'ai_prompts' => '<unknown>',
'diagnostics' => [
]
],
'attachment_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'company_website' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/feedback"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"body\": \"<string>\",\n \"consent_prompts\": false,\n \"consent_diagnostics\": false,\n \"consent_contact\": false,\n \"context_bundle\": {\n \"route_url\": \"<string>\",\n \"app_version\": \"<string>\",\n \"component\": \"<string>\",\n \"breadcrumbs\": [\n \"<unknown>\"\n ],\n \"ai_prompts\": \"<unknown>\",\n \"diagnostics\": {}\n },\n \"attachment_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"company_website\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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.mnemom.ai/v1/feedback")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"<string>\",\n \"body\": \"<string>\",\n \"consent_prompts\": false,\n \"consent_diagnostics\": false,\n \"consent_contact\": false,\n \"context_bundle\": {\n \"route_url\": \"<string>\",\n \"app_version\": \"<string>\",\n \"component\": \"<string>\",\n \"breadcrumbs\": [\n \"<unknown>\"\n ],\n \"ai_prompts\": \"<unknown>\",\n \"diagnostics\": {}\n },\n \"attachment_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"company_website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"<string>\",\n \"body\": \"<string>\",\n \"consent_prompts\": false,\n \"consent_diagnostics\": false,\n \"consent_contact\": false,\n \"context_bundle\": {\n \"route_url\": \"<string>\",\n \"app_version\": \"<string>\",\n \"component\": \"<string>\",\n \"breadcrumbs\": [\n \"<unknown>\"\n ],\n \"ai_prompts\": \"<unknown>\",\n \"diagnostics\": {}\n },\n \"attachment_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"company_website\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "received",
"feedback_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Submit in-product feedback
Ingest a single piece of in-product feedback (compliment / problem / suggestion) from an authenticated user (web app) or agent (MCP/gateway).
curl --request POST \
--url https://api.mnemom.ai/v1/feedback \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"title": "<string>",
"body": "<string>",
"consent_prompts": false,
"consent_diagnostics": false,
"consent_contact": false,
"context_bundle": {
"route_url": "<string>",
"app_version": "<string>",
"component": "<string>",
"breadcrumbs": [
"<unknown>"
],
"ai_prompts": "<unknown>",
"diagnostics": {}
},
"attachment_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"company_website": "<string>"
}
'import requests
url = "https://api.mnemom.ai/v1/feedback"
payload = {
"title": "<string>",
"body": "<string>",
"consent_prompts": False,
"consent_diagnostics": False,
"consent_contact": False,
"context_bundle": {
"route_url": "<string>",
"app_version": "<string>",
"component": "<string>",
"breadcrumbs": ["<unknown>"],
"ai_prompts": "<unknown>",
"diagnostics": {}
},
"attachment_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"company_website": "<string>"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
title: '<string>',
body: JSON.stringify('<string>'),
consent_prompts: false,
consent_diagnostics: false,
consent_contact: false,
context_bundle: {
route_url: '<string>',
app_version: '<string>',
component: '<string>',
breadcrumbs: ['<unknown>'],
ai_prompts: '<unknown>',
diagnostics: {}
},
attachment_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
company_website: '<string>'
})
};
fetch('https://api.mnemom.ai/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.mnemom.ai/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([
'title' => '<string>',
'body' => '<string>',
'consent_prompts' => false,
'consent_diagnostics' => false,
'consent_contact' => false,
'context_bundle' => [
'route_url' => '<string>',
'app_version' => '<string>',
'component' => '<string>',
'breadcrumbs' => [
'<unknown>'
],
'ai_prompts' => '<unknown>',
'diagnostics' => [
]
],
'attachment_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'company_website' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/feedback"
payload := strings.NewReader("{\n \"title\": \"<string>\",\n \"body\": \"<string>\",\n \"consent_prompts\": false,\n \"consent_diagnostics\": false,\n \"consent_contact\": false,\n \"context_bundle\": {\n \"route_url\": \"<string>\",\n \"app_version\": \"<string>\",\n \"component\": \"<string>\",\n \"breadcrumbs\": [\n \"<unknown>\"\n ],\n \"ai_prompts\": \"<unknown>\",\n \"diagnostics\": {}\n },\n \"attachment_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"company_website\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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.mnemom.ai/v1/feedback")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"title\": \"<string>\",\n \"body\": \"<string>\",\n \"consent_prompts\": false,\n \"consent_diagnostics\": false,\n \"consent_contact\": false,\n \"context_bundle\": {\n \"route_url\": \"<string>\",\n \"app_version\": \"<string>\",\n \"component\": \"<string>\",\n \"breadcrumbs\": [\n \"<unknown>\"\n ],\n \"ai_prompts\": \"<unknown>\",\n \"diagnostics\": {}\n },\n \"attachment_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"company_website\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"title\": \"<string>\",\n \"body\": \"<string>\",\n \"consent_prompts\": false,\n \"consent_diagnostics\": false,\n \"consent_contact\": false,\n \"context_bundle\": {\n \"route_url\": \"<string>\",\n \"app_version\": \"<string>\",\n \"component\": \"<string>\",\n \"breadcrumbs\": [\n \"<unknown>\"\n ],\n \"ai_prompts\": \"<unknown>\",\n \"diagnostics\": {}\n },\n \"attachment_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"company_website\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "received",
"feedback_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
Supabase JWT token in Authorization: Bearer header
Headers
Client-generated key (e.g. a UUID). Replaying the same key within 24h returns the original response unchanged.
Body
Reporter-selected intent.
compliment, problem, suggestion Short title (redacted before storage).
1 - 500Feedback body (redacted before storage).
1 - 20000When true, context_bundle.ai_prompts is stored (redacted); otherwise it is dropped.
When true, context_bundle.diagnostics is stored (redacted); otherwise it is dropped.
When true, the reporter opts in to a resolution-email notification.
Optional diagnostic context. route_url and breadcrumbs are always redacted-and-stored; ai_prompts / diagnostics are consent-gated.
Show child attributes
Show child attributes
IDs of previously-presigned pending attachments to bind to this submission.
Honeypot — must be empty. Any non-empty value silently accepts and persists nothing.