Endpoint Playground
Test Crawlora's Google Patents Suggest 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/suggest?field=inventor&value=<value>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| field | string | Yes | inventor | Which field to autocomplete. Allowed values: inventor, assignee |
| value | string | Yes | Partial name typed so far |
{
"code": 200,
"msg": "OK",
"data": {
"field": "inventor",
"value": "John",
"suggestions": [
{
"value": "Mark Thomas Johnson"
},
{
"value": "Mark Johnson"
},
{
"value": "David Johnson"
},
{
"value": "John Cronin"
},
{
"value": "John Marshall"
}
],
"source_url": "https://patents.google.com/xhr/suggest?query=&field=inventor&value=John&cursor=4&index=0%2C0&exp=",
"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 Google Patents' own autocomplete suggestions for an inventor or assignee name as the user types, the same suggestions shown by the Inventor/Assignee fields on Google Patents' advanced search page. Public data, sourced from Google Patents' own search API.
{
"code": 200,
"msg": "OK",
"data": {
"field": "inventor",
"value": "John",
"suggestions": [
{
"value": "Mark Thomas Johnson"
},
{
"value": "Mark Johnson"
},
{
"value": "David Johnson"
},
{
"value": "John Cronin"
},
{
"value": "John Marshall"
}
],
"source_url": "https://patents.google.com/xhr/suggest?query=&field=inventor&value=John&cursor=4&index=0%2C0&exp=",
"fetched_at": "2026-08-15T16:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/googlepatents/suggest?field=<field>&value=<value>" \
-H "x-api-key: $CRAWLORA_API_KEY"