Skip to main content
POST
/
api
/
wipo_brands
/
trademarks
/
search
/wipo_brands/trademarks/search
curl --request POST \
  --url https://api.anysite.io/api/wipo_brands/trademarks/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "apple",
  "strategy": "Simple",
  "owner": "<string>",
  "representative": "<string>",
  "goods_services": "<string>",
  "number": "<string>",
  "nice_classes": [
    9,
    42
  ],
  "vienna_classes": [
    "01.01.01"
  ],
  "designations": [
    "US",
    "EM"
  ],
  "offices": [
    "US",
    "JP"
  ],
  "features": [],
  "sort": "most_relevant"
}
'
[
  {
    "st13": "<string>",
    "@type": "@wipo_brands_search_trademark",
    "mark_text": "<string>",
    "type": "<string>",
    "kind": "<string>",
    "mark_feature": "<string>",
    "status": "<string>",
    "application_number": "<string>",
    "registration_number": "<string>",
    "application_date": "<string>",
    "registration_date": "<string>",
    "expiry_date": "<string>",
    "origin_office": "<string>",
    "designation": [],
    "nice_classes": [],
    "applicants": [],
    "applicant_countries": [],
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string | null

Mark text search query

Example:

"apple"

strategy
enum<string>
default:Simple

Mark text matching strategy

Available options:
Embedded,
Exact,
Simple,
Fuzzy,
Phonetic,
Stemming
owner
string | null

Filter by owner or holder name

representative
string | null

Filter by representative name

goods_services
string | null

Filter by goods and services text

number
string | null

Filter by application or registration number

nice_classes
integer[] | null

Filter by Nice classification class numbers

Example:
[9, 42]
vienna_classes
string[] | null

Filter by Vienna image classification codes

Example:
["01.01.01"]
designations
string[] | null

Filter by designation country or office codes

Example:
["US", "EM"]
offices
string[] | null

Filter by origin office codes

Example:
["US", "JP"]
features
enum<string>[] | null

Filter by mark feature

Available options:
Colour,
Combined,
Figurative,
Hologram,
Motion,
Multimedia,
Olfactory,
Other,
Pattern,
Position,
Sound,
Stylized characters,
Three dimensional,
Tracer,
Undefined,
Word
sort
enum<string>
default:most_relevant

Result ordering

Available options:
most_relevant,
least_relevant,
recently_filed,
oldest_filed,
recently_registered,
oldest_registered,
st13_descending,
st13_ascending

Response

Successful Response

st13
string
required
@type
string
default:@wipo_brands_search_trademark
mark_text
string | null
type
string | null
kind
string | null
mark_feature
string | null
status
string | null
application_number
string | null
registration_number
string | null
application_date
string | null
registration_date
string | null
expiry_date
string | null
origin_office
string | null
designation
string[]
nice_classes
integer[]
applicants
string[]
applicant_countries
string[]
image
string | null