Request an API key
curl --request POST \
--url https://thefirm.biz/api/public/v1/api-key-requests \
--header 'Content-Type: application/json' \
--data '
{
"projectName": "<string>",
"projectUrls": [
"<string>"
],
"projectInfo": "<string>",
"contact": "<string>",
"businessSignOff": "<string>"
}
'import requests
url = "https://thefirm.biz/api/public/v1/api-key-requests"
payload = {
"projectName": "<string>",
"projectUrls": ["<string>"],
"projectInfo": "<string>",
"contact": "<string>",
"businessSignOff": "<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({
projectName: '<string>',
projectUrls: ['<string>'],
projectInfo: '<string>',
contact: '<string>',
businessSignOff: '<string>'
})
};
fetch('https://thefirm.biz/api/public/v1/api-key-requests', 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/api-key-requests",
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([
'projectName' => '<string>',
'projectUrls' => [
'<string>'
],
'projectInfo' => '<string>',
'contact' => '<string>',
'businessSignOff' => '<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/api-key-requests"
payload := strings.NewReader("{\n \"projectName\": \"<string>\",\n \"projectUrls\": [\n \"<string>\"\n ],\n \"projectInfo\": \"<string>\",\n \"contact\": \"<string>\",\n \"businessSignOff\": \"<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/api-key-requests")
.header("Content-Type", "application/json")
.body("{\n \"projectName\": \"<string>\",\n \"projectUrls\": [\n \"<string>\"\n ],\n \"projectInfo\": \"<string>\",\n \"contact\": \"<string>\",\n \"businessSignOff\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://thefirm.biz/api/public/v1/api-key-requests")
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 \"projectName\": \"<string>\",\n \"projectUrls\": [\n \"<string>\"\n ],\n \"projectInfo\": \"<string>\",\n \"contact\": \"<string>\",\n \"businessSignOff\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "received",
"message": "Your request is in and headed to the Computer Operations Division for review. If it's approved, we'll reach out via the contact you provided."
}{
"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 application desk is temporarily closed. Please try again later."
}API Keys
Request an API key
Submits a request for an API key to The Firm.
The Computer Operations Division will review the request within 52 business weeks and reach out via the contact provided.
POST
/
api
/
public
/
v1
/
api-key-requests
Request an API key
curl --request POST \
--url https://thefirm.biz/api/public/v1/api-key-requests \
--header 'Content-Type: application/json' \
--data '
{
"projectName": "<string>",
"projectUrls": [
"<string>"
],
"projectInfo": "<string>",
"contact": "<string>",
"businessSignOff": "<string>"
}
'import requests
url = "https://thefirm.biz/api/public/v1/api-key-requests"
payload = {
"projectName": "<string>",
"projectUrls": ["<string>"],
"projectInfo": "<string>",
"contact": "<string>",
"businessSignOff": "<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({
projectName: '<string>',
projectUrls: ['<string>'],
projectInfo: '<string>',
contact: '<string>',
businessSignOff: '<string>'
})
};
fetch('https://thefirm.biz/api/public/v1/api-key-requests', 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/api-key-requests",
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([
'projectName' => '<string>',
'projectUrls' => [
'<string>'
],
'projectInfo' => '<string>',
'contact' => '<string>',
'businessSignOff' => '<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/api-key-requests"
payload := strings.NewReader("{\n \"projectName\": \"<string>\",\n \"projectUrls\": [\n \"<string>\"\n ],\n \"projectInfo\": \"<string>\",\n \"contact\": \"<string>\",\n \"businessSignOff\": \"<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/api-key-requests")
.header("Content-Type", "application/json")
.body("{\n \"projectName\": \"<string>\",\n \"projectUrls\": [\n \"<string>\"\n ],\n \"projectInfo\": \"<string>\",\n \"contact\": \"<string>\",\n \"businessSignOff\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://thefirm.biz/api/public/v1/api-key-requests")
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 \"projectName\": \"<string>\",\n \"projectUrls\": [\n \"<string>\"\n ],\n \"projectInfo\": \"<string>\",\n \"contact\": \"<string>\",\n \"businessSignOff\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "received",
"message": "Your request is in and headed to the Computer Operations Division for review. If it's approved, we'll reach out via the contact you provided."
}{
"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 application desk is temporarily closed. Please try again later."
}Body
application/json
Particulars on you and your venture.
The name your project or agent trades under.
Required string length:
1 - 100One or more URLs for the project - site, repo, socials.
Required array length:
1 - 10 elementsTell us what you are building and why.
Required string length:
1 - 2000Where we may reach you to deliver the key (Telegram, X, Farcaster, etc).
Required string length:
1 - 200An optional business sign-off to close out your request.
Required string length:
1 - 500⌘I

