Endpoints

API Endpoints: Registration Documents (RegDocs)

Return to Endpoints list
Endpoint Methods Description
HTML

CSV

XML

JSON
GET Returns list of all available registration document URLs (PDF format) and data for provided registration number (:registrationNumber parameter is required).

Example URL: /api/v1/RegDocs/xml/1234

Additional filters available for RegDocs endpoint:
Parameter Acceptable Values Returns Example URL
:docType "Document Type" (see DocumentTypes endpoint for list of acceptable values) Data matching specified :registrationNumber and :docType values /api/v1/RegDocs/xml/1234?docType=AMENDMENT
:countryCode "Country Code" (see Countries endpoint for list of acceptable values) Data matching specified :registrationNumber and :countryCode values (foreign principal country) /api/v1/RegDocs/xml/1234?countryCode=AF

Parameters can also be combined using standard GET method syntax ('?' to identify first parameter and '&' to identify multiple query parameters).

Example URL:

/api/v1/RegDocs/xml/1234?docType=AMENDMENT&countryCode=AF

would return records that match the provided :registrationNumber, :docType and :countryCode values (1234, AMENDMENT and AF, respectively.

Supporting system list endpoints (used for filter parameters above):

Endpoint Methods Description
HTML

CSV

XML

JSON
GET [System List] Returns all country codes and names referenced by data. "Country code" values can be used as filter parameters in endpoints indicated.
HTML

CSV

XML

JSON
GET [System List] Returns all document types referenced by data. "Document Type" values can be used as filter parameters in endpoints indicated.
Return to Endpoints list