curl --request POST \
--url https://api.finterm.ai/api/v1/feedback \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"summary": "<string>",
"submission_id": "<string>",
"body": "<string>",
"context": {
"cli_version": "<string>",
"platform": "<string>",
"command": "<string>",
"tool_id": "<string>",
"error_code": "<string>",
"request_ids": [
"<string>"
]
}
}
'import requests
url = "https://api.finterm.ai/api/v1/feedback"
payload = {
"summary": "<string>",
"submission_id": "<string>",
"body": "<string>",
"context": {
"cli_version": "<string>",
"platform": "<string>",
"command": "<string>",
"tool_id": "<string>",
"error_code": "<string>",
"request_ids": ["<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({
summary: '<string>',
submission_id: '<string>',
body: JSON.stringify('<string>'),
context: {
cli_version: '<string>',
platform: '<string>',
command: '<string>',
tool_id: '<string>',
error_code: '<string>',
request_ids: ['<string>']
}
})
};
fetch('https://api.finterm.ai/api/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.finterm.ai/api/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([
'summary' => '<string>',
'submission_id' => '<string>',
'body' => '<string>',
'context' => [
'cli_version' => '<string>',
'platform' => '<string>',
'command' => '<string>',
'tool_id' => '<string>',
'error_code' => '<string>',
'request_ids' => [
'<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.finterm.ai/api/v1/feedback"
payload := strings.NewReader("{\n \"summary\": \"<string>\",\n \"submission_id\": \"<string>\",\n \"body\": \"<string>\",\n \"context\": {\n \"cli_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"command\": \"<string>\",\n \"tool_id\": \"<string>\",\n \"error_code\": \"<string>\",\n \"request_ids\": [\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.finterm.ai/api/v1/feedback")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"summary\": \"<string>\",\n \"submission_id\": \"<string>\",\n \"body\": \"<string>\",\n \"context\": {\n \"cli_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"command\": \"<string>\",\n \"tool_id\": \"<string>\",\n \"error_code\": \"<string>\",\n \"request_ids\": [\n \"<string>\"\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.finterm.ai/api/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 \"summary\": \"<string>\",\n \"submission_id\": \"<string>\",\n \"body\": \"<string>\",\n \"context\": {\n \"cli_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"command\": \"<string>\",\n \"tool_id\": \"<string>\",\n \"error_code\": \"<string>\",\n \"request_ids\": [\n \"<string>\"\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"data": {
"feedback_id": "<string>",
"status": "received"
}
}{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"error": {
"code": "<string>",
"message": "<string>",
"upgrade_url": "<string>"
}
}{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"error": {
"code": "<string>",
"message": "<string>",
"upgrade_url": "<string>"
}
}{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"error": {
"code": "<string>",
"message": "<string>",
"upgrade_url": "<string>"
}
}Submit product feedback
Report a bug, ask a question, or request a feature, straight from the API or the finterm feedback CLI command. Requires a live bearer token but NOT a Pro subscription. The body is validated strictly: unknown top-level or context keys are rejected with INVALID_REQUEST so the contract is self-teaching. Include request_ids from failing responses when reporting a bug; they let the report be correlated with server-side logs.
curl --request POST \
--url https://api.finterm.ai/api/v1/feedback \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"summary": "<string>",
"submission_id": "<string>",
"body": "<string>",
"context": {
"cli_version": "<string>",
"platform": "<string>",
"command": "<string>",
"tool_id": "<string>",
"error_code": "<string>",
"request_ids": [
"<string>"
]
}
}
'import requests
url = "https://api.finterm.ai/api/v1/feedback"
payload = {
"summary": "<string>",
"submission_id": "<string>",
"body": "<string>",
"context": {
"cli_version": "<string>",
"platform": "<string>",
"command": "<string>",
"tool_id": "<string>",
"error_code": "<string>",
"request_ids": ["<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({
summary: '<string>',
submission_id: '<string>',
body: JSON.stringify('<string>'),
context: {
cli_version: '<string>',
platform: '<string>',
command: '<string>',
tool_id: '<string>',
error_code: '<string>',
request_ids: ['<string>']
}
})
};
fetch('https://api.finterm.ai/api/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.finterm.ai/api/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([
'summary' => '<string>',
'submission_id' => '<string>',
'body' => '<string>',
'context' => [
'cli_version' => '<string>',
'platform' => '<string>',
'command' => '<string>',
'tool_id' => '<string>',
'error_code' => '<string>',
'request_ids' => [
'<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.finterm.ai/api/v1/feedback"
payload := strings.NewReader("{\n \"summary\": \"<string>\",\n \"submission_id\": \"<string>\",\n \"body\": \"<string>\",\n \"context\": {\n \"cli_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"command\": \"<string>\",\n \"tool_id\": \"<string>\",\n \"error_code\": \"<string>\",\n \"request_ids\": [\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.finterm.ai/api/v1/feedback")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"summary\": \"<string>\",\n \"submission_id\": \"<string>\",\n \"body\": \"<string>\",\n \"context\": {\n \"cli_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"command\": \"<string>\",\n \"tool_id\": \"<string>\",\n \"error_code\": \"<string>\",\n \"request_ids\": [\n \"<string>\"\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.finterm.ai/api/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 \"summary\": \"<string>\",\n \"submission_id\": \"<string>\",\n \"body\": \"<string>\",\n \"context\": {\n \"cli_version\": \"<string>\",\n \"platform\": \"<string>\",\n \"command\": \"<string>\",\n \"tool_id\": \"<string>\",\n \"error_code\": \"<string>\",\n \"request_ids\": [\n \"<string>\"\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"data": {
"feedback_id": "<string>",
"status": "received"
}
}{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"error": {
"code": "<string>",
"message": "<string>",
"upgrade_url": "<string>"
}
}{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"error": {
"code": "<string>",
"message": "<string>",
"upgrade_url": "<string>"
}
}{
"finterm": {
"schema": "<string>",
"tool": "<string>",
"args": {},
"request_id": "<string>",
"cursor": "<string>"
},
"error": {
"code": "<string>",
"message": "<string>",
"upgrade_url": "<string>"
}
}Authorizations
A live account API key from FINTERM_API_KEY.
Body
A bug report, question, or feature request.
What kind of feedback this is.
bug, question, feature_request One-line summary of the report (at most 200 characters; no newlines or control characters).
1 - 200Client-generated idempotency key, one per user-approved submission (a UUID works). Retrying with the same id returns the original acknowledgement instead of storing a duplicate report.
8 - 64Optional Markdown detail (at most 16 KB): what happened, expected vs. actual, reproduction steps.
16384Optional structured context. Only the keys documented here are accepted; unknown keys are rejected.
Show child attributes
Show child attributes