Skip to main content
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 in LASTNAME, 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_rate suggests scheduling an examiner interview
  • Workload assessment: avg_actions_to_allowance indicates how many rounds to expect

Authorizations

X-API-Key
string
header
required

API key for paid endpoints. Create in your account Settings at https://abigail.app

Headers

X-API-Key
string
required

Path Parameters

examiner_name
string
required

Examiner name in LASTNAME, FIRSTNAME M format. URL-encode spaces and commas.

Response

Examiner profile found

examiner_name
string
art_unit
string
allowance_rate
number

Historical allowance rate (0-1).

avg_actions_to_allowance
number
top_rejection_bases
string[]
interview_success_rate
number
total_cases_analyzed
integer