LawForge
ReferenceTools

patent_citation_network

Get patents that cite or are cited by a patent

patent_citation_network

Explore the citation network around a specific patent.

Parameters

ParameterTypeRequiredDescription
patent_idstringYesUSPTO patent number
directionstringYescites, cited_by, or both
limitnumberNoMax results per direction (default: 20, max: 50)

Direction Values

ValueDescription
citesPatents this patent references (backward citations)
cited_byPatents that reference this patent (forward citations)
bothBoth directions

Example Request

{
  "patent_id": "7654321",
  "direction": "cited_by",
  "limit": 10
}

Example Response

{
  "patent_id": "7654321",
  "direction": "cited_by",
  "cited_by": [
    {
      "patent_id": "8765432",
      "patent_title": "Improved compression method",
      "patent_date": "2012-05-10"
    },
    {
      "patent_id": "9876543",
      "patent_title": "Data encoding system",
      "patent_date": "2015-08-22"
    }
  ],
  "source": "PatentsView (USPTO)"
}

Use Cases

  • Prior Art Analysis: Find what a patent builds upon
  • Patent Valuation: Highly-cited patents may be more valuable
  • Technology Trends: Track how innovations spread
  • Freedom to Operate: Identify related patents

Notes

  • Forward citations (cited_by) accumulate over time
  • Recent patents will have fewer forward citations
  • Backward citations (cites) are fixed at grant time

See Also

On this page