Lookup Application
curl --request GET \
--url https://api.abigail.app/v1/openclaw/lookup/{application_number}import requests
url = "https://api.abigail.app/v1/openclaw/lookup/{application_number}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.abigail.app/v1/openclaw/lookup/{application_number}', 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/lookup/{application_number}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/lookup/{application_number}"
req, _ := http.NewRequest("GET", url, nil)
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/lookup/{application_number}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.abigail.app/v1/openclaw/lookup/{application_number}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"application_number": "17200011",
"invention_title": "SYSTEMS AND METHODS FOR AI-ASSISTED PATENT PROSECUTION",
"status": "pending",
"filing_date": "2025-01-15",
"examiner_name": "SMITH, JOHN A",
"current_art_unit": "3621",
"response_deadline": "2026-06-01",
"critical_deadline_date": null,
"critical_deadline_correspondence_id": null
}{
"error": true,
"error_code": "app_not_found",
"message": "Application 17200011 not found in USPTO Patent Center.",
"agent_suggestion": "Application not found. Verify the number format (17200011 or 17/200,011) and check for typos."
}Free Endpoints
Lookup Application
GET
/
v1
/
openclaw
/
lookup
/
{application_number}
Lookup Application
curl --request GET \
--url https://api.abigail.app/v1/openclaw/lookup/{application_number}import requests
url = "https://api.abigail.app/v1/openclaw/lookup/{application_number}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.abigail.app/v1/openclaw/lookup/{application_number}', 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/lookup/{application_number}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/lookup/{application_number}"
req, _ := http.NewRequest("GET", url, nil)
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/lookup/{application_number}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.abigail.app/v1/openclaw/lookup/{application_number}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"application_number": "17200011",
"invention_title": "SYSTEMS AND METHODS FOR AI-ASSISTED PATENT PROSECUTION",
"status": "pending",
"filing_date": "2025-01-15",
"examiner_name": "SMITH, JOHN A",
"current_art_unit": "3621",
"response_deadline": "2026-06-01",
"critical_deadline_date": null,
"critical_deadline_correspondence_id": null
}{
"error": true,
"error_code": "app_not_found",
"message": "Application 17200011 not found in USPTO Patent Center.",
"agent_suggestion": "Application not found. Verify the number format (17200011 or 17/200,011) and check for typos."
}This endpoint is free and requires no authentication.
1720001117/200,01117 200 011
Path Parameters
USPTO application number. Formats accepted: 17200011, 17/200,011, 17200011.
⌘I
