Endpoint Playground
Test Crawlora's Google Patents Coverage 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/coverage" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"countries": [
{
"country_code": "US",
"years": [
{
"year": 2024,
"grants": "350000",
"applications": "420000"
},
{
"year": 2025,
"grants": "330000",
"applications": "400000"
}
]
},
{
"country_code": "CN",
"years": [
{
"year": 2025,
"grants": "2802408",
"applications": "1712467"
}
]
}
],
"source_url": "https://patents.google.com/xhr/stats",
"fetched_at": "2026-08-15T16: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 how many patent grants and applications Google Patents has indexed, per patent office/country, per year, across every authority it covers. Public data, sourced from Google Patents' own search API.
{
"code": 200,
"msg": "OK",
"data": {
"countries": [
{
"country_code": "US",
"years": [
{
"year": 2024,
"grants": "350000",
"applications": "420000"
},
{
"year": 2025,
"grants": "330000",
"applications": "400000"
}
]
},
{
"country_code": "CN",
"years": [
{
"year": 2025,
"grants": "2802408",
"applications": "1712467"
}
]
}
],
"source_url": "https://patents.google.com/xhr/stats",
"fetched_at": "2026-08-15T16:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/googlepatents/coverage" \
-H "x-api-key: $CRAWLORA_API_KEY"