GET

Trademark Search - 03.Read many

Get a list of trademark searches.

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)
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

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 a simplified (without results) list of trademark searches performed.

  • 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.

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