Examiner Intelligence
curl --request GET \
--url https://api.abigail.app/v1/openclaw/examiner/{examiner_name} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.abigail.app/v1/openclaw/examiner/{examiner_name}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.abigail.app/v1/openclaw/examiner/{examiner_name}', 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/examiner/{examiner_name}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-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"
"net/http"
"io"
)
func main() {
url := "https://api.abigail.app/v1/openclaw/examiner/{examiner_name}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.abigail.app/v1/openclaw/examiner/{examiner_name}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.abigail.app/v1/openclaw/examiner/{examiner_name}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"examiner_name": "SMITH, JOHN A",
"art_unit": "3621",
"allowance_rate": 0.34,
"avg_actions_to_allowance": 2.8,
"top_rejection_bases": [
"102(a)(1)",
"103"
],
"interview_success_rate": 0.67,
"total_cases_analyzed": 142
}{
"error": true,
"error_code": "<string>",
"message": "<string>",
"agent_suggestion": "<string>"
}Retired Endpoints
Examiner Intelligence
GET
/
v1
/
openclaw
/
examiner
/
{examiner_name}
Examiner Intelligence
curl --request GET \
--url https://api.abigail.app/v1/openclaw/examiner/{examiner_name} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.abigail.app/v1/openclaw/examiner/{examiner_name}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.abigail.app/v1/openclaw/examiner/{examiner_name}', 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/examiner/{examiner_name}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-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"
"net/http"
"io"
)
func main() {
url := "https://api.abigail.app/v1/openclaw/examiner/{examiner_name}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.abigail.app/v1/openclaw/examiner/{examiner_name}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.abigail.app/v1/openclaw/examiner/{examiner_name}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"examiner_name": "SMITH, JOHN A",
"art_unit": "3621",
"allowance_rate": 0.34,
"avg_actions_to_allowance": 2.8,
"top_rejection_bases": [
"102(a)(1)",
"103"
],
"interview_success_rate": 0.67,
"total_cases_analyzed": 142
}{
"error": true,
"error_code": "<string>",
"message": "<string>",
"agent_suggestion": "<string>"
}Get an intelligence profile for a USPTO patent examiner, including historical
allowance rates, rejection patterns, and interview success rates.
Name format
Examiner names must be inLASTNAME, FIRSTNAME M format and URL-encoded:
/v1/openclaw/examiner/SMITH%2C%20JOHN%20A
Use the
/lookup endpoint first to get the exact examiner name from a
patent application. The examiner_name field in the lookup response is
already in the correct format.Use cases
- Pre-analysis: Check examiner behavior before choosing a response strategy
- Interview prep: High
interview_success_ratesuggests scheduling an examiner interview - Workload assessment:
avg_actions_to_allowanceindicates how many rounds to expect
Authorizations
API key for paid endpoints. Create in your account Settings at https://abigail.app
Headers
Path Parameters
Examiner name in LASTNAME, FIRSTNAME M format. URL-encode spaces and commas.
