# Google Patents Details

Get detailed information about a specific patent by its ID.

- **Documentation:** [https://scrappa.co/docs/google-patents-api/google_patents_details](https://scrappa.co/docs/google-patents-api/google_patents_details)
- **API group:** Google Patents API
- **Endpoint:** `GET https://scrappa.co/api/google-patents/details`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `patent_id` | string | Yes | The patent number or ID. Example: `US9789384B1`, `EP1234567A1` |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/google-patents/details?patent_id=US9789384B1"
```

## Example response

```json
{
    "success": true,
    "data": {
        "patent_id": "patent/US9789384B1/en",
        "publication_number": "US9789384B1",
        "title": "Self-balancing board having a suspension interface...",
        "abstract": "A self-balancing board including...",
        "inventors": [
            "Shane Chen"
        ],
        "assignees": {
            "original": [
                "Inventist, Inc."
            ],
            "current": [
                "Shane Chen"
            ]
        },
        "dates": {
            "priority": "2015-11-03",
            "filing": "2017-07-05",
            "grant": null,
            "publication": "2017-10-10"
        },
        "country": "US",
        "language": null,
        "application_number": "US15/652,137",
        "prior_art_keywords": [
            "foot deck",
            "wheel assembly"
        ],
        "links": {
            "patent_page": "https://patents.google.com/patent/US9789384B1",
            "pdf": "https://patentimages.storage.googleapis.com/..."
        },
        "citations": {
            "forward_no_family": [],
            "forward_yes_family": [],
            "backward_no_family": [],
            "backward_yes_family": []
        }
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 401 | Unauthorized | API key is missing or invalid |
| 404 | Not Found | Patent not found |
| 422 | Validation Error | Invalid patent ID format |
| 500 | Internal Server Error | Service temporarily unavailable or failed to fetch patent details |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
