Endpoint Playground
Test Crawlora's Patents Detail API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/patents/detail?guid=<guid>&source=<source>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| guid | string | Yes | Document GUID, e.g. from a prior search result's guid field | |
| source | string | Yes | Source database. Allowed values: US-PGPUB, USPAT, USOCR |
{
"code": 200,
"msg": "OK",
"data": {
"guid": "US-20260238009-A1",
"publication_number": "20260238009",
"title": "HOME GRID FOR IMPROVED EFFICIENCY OF SOLAR ENERGY",
"database": "US-PGPUB",
"applicant_names": [
"Crane; Eric M"
],
"inventors_short": "Crane; Eric M",
"application_number": "19/048819",
"filing_date": "2025-02-07T00:00:00Z",
"publication_date": "2026-08-13T00:00:00Z",
"ipc_codes": "H02J3/28;F03G6/00",
"kind_codes": [
"A1"
],
"page_count": 15,
"language": "EN",
"abstract": "A home grid storage device and method for storing electricity generated on-site.",
"description": [
"BRIEF DESCRIPTION OF THE DRAWINGS",
"[0023] The drawings presented herein show illustrative embodiments."
],
"claims": [
"1. A device comprising a reservoir.",
"2. The device of claim 1, further comprising a pump."
],
"source_url": "https://ppubs.uspto.gov/api/patents/highlight/US-20260238009-A1?includeSections=true&queryId=0&source=US-PGPUB&uniqueId=",
"fetched_at": "2026-08-15T22:00:00Z"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Fetches a single USPTO Patent Public Search record's full text -- bibliographic data, abstract, description, and claims -- by GUID and source database. guid and source normally come straight from a prior /patents/search result's guid and database fields. Public data, sourced from USPTO's own official search tool.
{
"code": 200,
"msg": "OK",
"data": {
"guid": "US-20260238009-A1",
"publication_number": "20260238009",
"title": "HOME GRID FOR IMPROVED EFFICIENCY OF SOLAR ENERGY",
"database": "US-PGPUB",
"applicant_names": [
"Crane; Eric M"
],
"inventors_short": "Crane; Eric M",
"application_number": "19/048819",
"filing_date": "2025-02-07T00:00:00Z",
"publication_date": "2026-08-13T00:00:00Z",
"ipc_codes": "H02J3/28;F03G6/00",
"kind_codes": [
"A1"
],
"page_count": 15,
"language": "EN",
"abstract": "A home grid storage device and method for storing electricity generated on-site.",
"description": [
"BRIEF DESCRIPTION OF THE DRAWINGS",
"[0023] The drawings presented herein show illustrative embodiments."
],
"claims": [
"1. A device comprising a reservoir.",
"2. The device of claim 1, further comprising a pump."
],
"source_url": "https://ppubs.uspto.gov/api/patents/highlight/US-20260238009-A1?includeSections=true&queryId=0&source=US-PGPUB&uniqueId=",
"fetched_at": "2026-08-15T22:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/patents/detail?guid=<guid>&source=<source>" \
-H "x-api-key: $CRAWLORA_API_KEY"