Endpoints

Info

This endpoint returns patent-specific information from the CIPO patent database. The response includes the boolean found, and bibliographic data, abstract, claims, and representative drawing.

For patents with abstracts in English and French, both versions are returned as a list. The Canadian Patent Classification, cpc, is returned only for older patents.

Processing of data gathered from CIPO is kept to a minimum and mostly returned as is, therefore common issues like extra whitespace and unrecognizable non-ASCII characters are to be expected.

Endpoint
GET https://api.patentology.org/v1/info

Query Parameters

Parameter Description
id Patent number.

Example Request:

import requests

payload = {'id': '2894056'}
r = requests.get('https://api.patentology.org/v1/info', params=payload)

Exampe Response:

{
    "application": "CA 2894056",
    "titles": {
        "fr": "APPAREIL ELECTRONIQUE PORTABLE, PROCEDE ET INTERFACE UTILISATEUR GRAPHIQUE ...",
        "en": "PORTABLE ELECTRONIC DEVICE, METHOD AND GRAPHICAL USER ITNERFACE FOR DISPLAYING ..."
    },
    "bibliographic-data": {
        "ipc": [
            "G06F 3/0488 (2013.01)",
            "G06F 3/0481 (2013.01)",
            "G06F 3/0484 (2013.01)"
        ],
        "owners": [
            "APPLE INC. (United States of America)"
        ],
        "filing-date": "2007-09-05",
        "language": "English",
        "pub-date": "2008-03-13",
        "issued": "",
        "agent": "RICHES, MCKENZIE & HERBERT LLP",
        "licence": "N/A",
        "inventors": [
            "ORDING, BAS (United States of America)",
            "FORSTALL, SCOTT (United States of America)",
            "CHRISTIE, GREG (United States of America)",
            "LEMAY, STEPHEN O. (United States of America)",
            "CHAUDHRI, IMRAN (United States of America)",
            "WILLIAMSON, RICHARD (United States of America)",
            "BLUMENBERG, CHRIS (United States of America)",
            "VAN OS, MARCEL (United States of America)"
        ],
        "applicants": [
            "APPLE INC. (United States of America)"
        ]
    },
    "claims": "Note: Claims are shown in the official language in which they were submitted. The embodiments ...",
    "found": "True",
    "abstracts": [
        "A computer-implemented method, for use in conjunction with a portable electronic device ..."
    ],
    "drawing": "http://www.ic.gc.ca/opic-cipo/cpd/page/2894056_20150028_page1_scale25_rotate0_objectnameA1001001A17B25A11931J94872.gif"
}