GET

Trademark Search - 02.Read

Get trademark search details including search results.

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

string

The trademark search ID

Request headers

string

User authentication cookie. Read more about how to you get it from here.

string
Subscription key which provides access to this API.

Response 200

Returns details about the trademark search.

  • string id: The ID for the new trademark search created.
  • string search_term: Terms for the search.
  • string classes: Search classes for the search.
  • string registry_id: Registry ID for the search. You can get more details about the registry here.
  • string start_time: Date/time in ISO-8601 (UTC) format for the beggining of search process.
  • string end_time: Date/time in ISO-8601 (UTC) format for the end of search process.
  • number status: Current search status. Possible values are: 0-Unknown; 1-Waiting; 2-Searching; 3-Completed; 4-Failed; 5-Cancelled.
  • array results: Results for the search process. Each result has:
    • string id: The ID for the trademark search result.
    • string registry_id: Registry ID for the trademark search result. You can get more details about the registry here.
    • string application_number: Application number for the trademark search result.
    • string application_date: Application date in ISO-8601 (UTC) format for the trademark search result.
    • string mark_string: Mark text for the trademark search result.
    • string classes: Comma separated nice classification numbers for the trademark search result.
    • string status: Status for the trademark search result.
    • string owner: Owner name for the trademark search result.
    • integer score: 0 means a very similar result to your search terms. Higher values mean different result for your search terms.
    • string similarity: A text representation for the "score" property.

Loading...
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "search_term": {
      "type": "string"
    },
    "classes": {
      "type": "string"
    },
    "registry_id": {},
    "start_time": {
      "type": "string"
    },
    "end_time": {
      "type": "string"
    },
    "status": {
      "type": "integer"
    },
    "results": {
      "type": "array",
      "items": {}
    }
  }
}
* See getting started for more information on how to use this API. You can also check the API change history.