GET

Registry - 02.Read many

Get a list with all registries (IPO) available in the system.

Important

Calls to this method must include the cookie .LawPanel.AuthCookie in order to identify you at user level. For more details about authentication please check this link. To obtain the cookie you can use the method Login.

Request URL

Request parameters

(optional)
boolean

If you set this parameter to true, you'll only receive registries with data to perform trademark searches.

(optional)
integer

Take N records. Default value is 10. Max value is 100.

(optional)
integer

Skip N records.

(optional)
string

Filter ID to apply on this endpoint. To get further details about filters click here.

(optional)
string

Filter definition to apply on this endpoint. To get more details about this parameter check Pagination and Filtering.

Request headers

string
Subscription key which provides access to this API.

Response 200

Returns a list with all registries availables for your query.

  • string id: The ID for the registry.
  • string wipo_code: WIPO code for the registry. More details here.
  • string description: A human readable description for the registry. Generally its name.
  • bool have_data: When true, it means current registry has data to perform trademark searches.
  • string url_base_for_trademarks: If present, it indicates a URL to get more details about trademarks. For example: https://euipo.europa.eu/eSearch/#details/trademarks/{ID} for EUIPO.
  • string iso_three_letters_country_code: If registry belongs to a single country, it contains the three letters ISO country code.
  • integer total_trademarks: Contains total trademarks available..

Loading...
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "id": {
        "type": "string"
      },
      "wipo_code": {
        "type": "string"
      },
      "description": {
        "type": "string"
      },
      "have_data": {
        "type": "boolean"
      },
      "url_base_for_trademarks": {
        "type": "string"
      },
      "iso_three_letters_country_code": {
        "type": "string"
      },
      "total_trademarks": {
        "type": "integer"
      }
    },
    "required": [
      "id",
      "alternative_names",
      "wipo_code",
      "description",
      "have_data",
      "url_base_for_trademarks",
      "iso_three_letters_country_code",
      "total_trademarks"
    ]
  }
}
* See getting started for more information on how to use this API. You can also check the API change history.