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>'
{
  "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
}
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