Endpoint Playground
Test Crawlora's Google Patents Recent 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/googlepatents/recent?week=<week>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| week | string | Yes | ISO 8601 week, format YYYY-Www |
{
"code": 200,
"msg": "OK",
"data": {
"week": "2026-W20",
"count": 329,
"results": [
{
"publication_number": "US10758101B2",
"title": "Adjustable venous cannula and method of treating a patient",
"url": "https://patents.google.com/patent/US10758101B2/en"
},
{
"publication_number": "DE202021004627U1",
"title": "Battery cell, battery, power-consuming device and device for manufacturing a battery cell",
"url": "https://patents.google.com/patent/DE202021004627U1/en"
}
],
"source_url": "https://patents.google.com/sitemap/2026-W20.html",
"fetched_at": "2026-08-15T20: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.
Returns the patent publications Google Patents' bulk sitemap indexes for one ISO 8601 week (format YYYY-Www, e.g. "2026-W20"): publication number, title, and detail-page URL for each. Useful for browsing recently published patents without a search query. Public data, sourced from Google Patents' own sitemap.
{
"code": 200,
"msg": "OK",
"data": {
"week": "2026-W20",
"count": 329,
"results": [
{
"publication_number": "US10758101B2",
"title": "Adjustable venous cannula and method of treating a patient",
"url": "https://patents.google.com/patent/US10758101B2/en"
},
{
"publication_number": "DE202021004627U1",
"title": "Battery cell, battery, power-consuming device and device for manufacturing a battery cell",
"url": "https://patents.google.com/patent/DE202021004627U1/en"
}
],
"source_url": "https://patents.google.com/sitemap/2026-W20.html",
"fetched_at": "2026-08-15T20:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/googlepatents/recent?week=<week>" \
-H "x-api-key: $CRAWLORA_API_KEY"