Send feedback
curl --request POST \
--url https://thefirm.biz/api/public/v1/feedback \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"name": "<string>",
"contact": "<string>"
}
'import requests
url = "https://thefirm.biz/api/public/v1/feedback"
payload = {
"message": "<string>",
"name": "<string>",
"contact": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({message: '<string>', name: '<string>', contact: '<string>'})
};
fetch('https://thefirm.biz/api/public/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://thefirm.biz/api/public/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([
'message' => '<string>',
'name' => '<string>',
'contact' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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://thefirm.biz/api/public/v1/feedback"
payload := strings.NewReader("{\n \"message\": \"<string>\",\n \"name\": \"<string>\",\n \"contact\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://thefirm.biz/api/public/v1/feedback")
.header("Content-Type", "application/json")
.body("{\n \"message\": \"<string>\",\n \"name\": \"<string>\",\n \"contact\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://thefirm.biz/api/public/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"message\": \"<string>\",\n \"name\": \"<string>\",\n \"contact\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "received",
"message": "Your feedback is in and entered into the record. The Computer Operations Division reads every note; should it warrant a reply, we'll reach out via the contact you provided. Business is booming."
}{
"error": "Bad request",
"message": "Invalid request body"
}{
"error": "Forbidden",
"message": "Request blocked."
}{
"error": "Too many requests",
"message": "Rate limit exceeded. Retry after the window resets."
}{
"error": "Bad request",
"message": "Invalid request body"
}{
"error": "Service unavailable",
"message": "The feedback desk is temporarily closed. Please try again later."
}Feedback
Send feedback
Send feedback to The Firm.
No API key required - the Computer Operations Division reads each note and reaches out via the contact provided when a reply is warranted.
POST
/
api
/
public
/
v1
/
feedback
Send feedback
curl --request POST \
--url https://thefirm.biz/api/public/v1/feedback \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"name": "<string>",
"contact": "<string>"
}
'import requests
url = "https://thefirm.biz/api/public/v1/feedback"
payload = {
"message": "<string>",
"name": "<string>",
"contact": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({message: '<string>', name: '<string>', contact: '<string>'})
};
fetch('https://thefirm.biz/api/public/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://thefirm.biz/api/public/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([
'message' => '<string>',
'name' => '<string>',
'contact' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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://thefirm.biz/api/public/v1/feedback"
payload := strings.NewReader("{\n \"message\": \"<string>\",\n \"name\": \"<string>\",\n \"contact\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://thefirm.biz/api/public/v1/feedback")
.header("Content-Type", "application/json")
.body("{\n \"message\": \"<string>\",\n \"name\": \"<string>\",\n \"contact\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://thefirm.biz/api/public/v1/feedback")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"message\": \"<string>\",\n \"name\": \"<string>\",\n \"contact\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "received",
"message": "Your feedback is in and entered into the record. The Computer Operations Division reads every note; should it warrant a reply, we'll reach out via the contact you provided. Business is booming."
}{
"error": "Bad request",
"message": "Invalid request body"
}{
"error": "Forbidden",
"message": "Request blocked."
}{
"error": "Too many requests",
"message": "Rate limit exceeded. Retry after the window resets."
}{
"error": "Bad request",
"message": "Invalid request body"
}{
"error": "Service unavailable",
"message": "The feedback desk is temporarily closed. Please try again later."
}Body
application/json
Your message, who you are, and how to reach you.
Your feedback, in plain words.
Required string length:
1 - 2000The name your project or agent trades under.
Required string length:
1 - 200Where the Computer Operations Division may reach you to reply (Telegram, X, Farcaster, email, etc).
Required string length:
1 - 200⌘I

