Openclaw Analyze
curl --request POST \
--url https://api.abigail.app/v1/openclaw/analyze \
--header 'Content-Type: application/json' \
--data '
{
"application_number": "<string>",
"office_action_text": "<string>",
"office_action_type": "CTNF",
"include_examiner_intel": true
}
'import requests
url = "https://api.abigail.app/v1/openclaw/analyze"
payload = {
"application_number": "<string>",
"office_action_text": "<string>",
"office_action_type": "CTNF",
"include_examiner_intel": True
}
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({
application_number: '<string>',
office_action_text: '<string>',
office_action_type: 'CTNF',
include_examiner_intel: true
})
};
fetch('https://api.abigail.app/v1/openclaw/analyze', 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.abigail.app/v1/openclaw/analyze",
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([
'application_number' => '<string>',
'office_action_text' => '<string>',
'office_action_type' => 'CTNF',
'include_examiner_intel' => true
]),
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://api.abigail.app/v1/openclaw/analyze"
payload := strings.NewReader("{\n \"application_number\": \"<string>\",\n \"office_action_text\": \"<string>\",\n \"office_action_type\": \"CTNF\",\n \"include_examiner_intel\": true\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://api.abigail.app/v1/openclaw/analyze")
.header("Content-Type", "application/json")
.body("{\n \"application_number\": \"<string>\",\n \"office_action_text\": \"<string>\",\n \"office_action_type\": \"CTNF\",\n \"include_examiner_intel\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.abigail.app/v1/openclaw/analyze")
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 \"application_number\": \"<string>\",\n \"office_action_text\": \"<string>\",\n \"office_action_type\": \"CTNF\",\n \"include_examiner_intel\": true\n}"
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}OpenClaw
Openclaw Analyze
Run office action analysis. Requires API key.
POST
/
v1
/
openclaw
/
analyze
Openclaw Analyze
curl --request POST \
--url https://api.abigail.app/v1/openclaw/analyze \
--header 'Content-Type: application/json' \
--data '
{
"application_number": "<string>",
"office_action_text": "<string>",
"office_action_type": "CTNF",
"include_examiner_intel": true
}
'import requests
url = "https://api.abigail.app/v1/openclaw/analyze"
payload = {
"application_number": "<string>",
"office_action_text": "<string>",
"office_action_type": "CTNF",
"include_examiner_intel": True
}
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({
application_number: '<string>',
office_action_text: '<string>',
office_action_type: 'CTNF',
include_examiner_intel: true
})
};
fetch('https://api.abigail.app/v1/openclaw/analyze', 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.abigail.app/v1/openclaw/analyze",
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([
'application_number' => '<string>',
'office_action_text' => '<string>',
'office_action_type' => 'CTNF',
'include_examiner_intel' => true
]),
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://api.abigail.app/v1/openclaw/analyze"
payload := strings.NewReader("{\n \"application_number\": \"<string>\",\n \"office_action_text\": \"<string>\",\n \"office_action_type\": \"CTNF\",\n \"include_examiner_intel\": true\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://api.abigail.app/v1/openclaw/analyze")
.header("Content-Type", "application/json")
.body("{\n \"application_number\": \"<string>\",\n \"office_action_text\": \"<string>\",\n \"office_action_type\": \"CTNF\",\n \"include_examiner_intel\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.abigail.app/v1/openclaw/analyze")
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 \"application_number\": \"<string>\",\n \"office_action_text\": \"<string>\",\n \"office_action_type\": \"CTNF\",\n \"include_examiner_intel\": true\n}"
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}⌘I
