Watchman Search Guide
For documentation on older releases of Watchman (v0.31.x series), please visit the older docs website in our GitHub repository.
Overview
Search Endpoint
Watchman provides multiple search endpoints and parameters to help you find the exact matches you need. Different search options access different combinations of watchlists.
GET /v2/search?type=person&name=nicolas+maduro&limit=1
Entity Types
The API requires specifying an entity type:
Type | Description | Example Query |
---|---|---|
person |
Individual persons | ?type=person&name=nicolas maduro |
business |
Business entities | ?type=business&name=tidewater |
organization |
Non-business organizations | ?type=organization&name=hamas |
aircraft |
Aircraft registrations | ?type=aircraft&callSign=EP-GOM |
vessel |
Maritime vessels | ?type=vessel&imoNumber=9401598 |
Advanced Entity Search Parameters
Each entity type supports specific search parameters:
Person Parameters
name
: Primary namealtNames[]
: Alternative namesgender
: Gender (male/female/unknown)birthDate
: Date of birth (YYYY-MM-DD)deathDate
: Date of death (YYYY-MM-DD)titles[]
: Professional titles
Business/Organization Parameters
name
: Entity namealtNames[]
: Alternative namescreated
: Formation date (YYYY-MM-DD)dissolved
: Dissolution date (YYYY-MM-DD)
Aircraft Parameters
name
: Aircraft name/identifieraltNames[]
: Alternative designationsaircraftType
: Type of aircraftflag
: Country of registrationbuilt
: Build date (YYYY-MM-DD)icaoCode
: ICAO codemodel
: Aircraft modelserialNumber
: Serial number
Vessel Parameters
name
: Vessel namealtNames[]
: Alternative namesimoNumber
: IMO numbervesselType
: Type of vesselflag
: Flag countrybuilt
: Build date (YYYY-MM-DD)mmsi
: MMSI identifiercallSign
: Radio call signtonnage
: Vessel tonnagegrossRegisteredTonnage
: GRT measurementowner
: Vessel owner
Common Parameters for All Entity Types
address[]
: Physical addressesemail[]
,emailAddress[]
,emailAddresses[]
: Email addressesphone[]
,phoneNumber[]
,phoneNumbers[]
: Phone numbersfax[]
,faxNumber[]
,faxNumbers[]
: Fax numberswebsite[]
,websites[]
: Associated websitescryptoAddress[]
: Cryptocurrency addresses (format:currency:address
)
Search Response
The API returns a unified structure with match scores and entity details:
{
"entities": [
{
"entity": {
"name": "MADURO MOROS, Nicolas",
"entityType": "person",
"sourceList": "us_ofac",
"sourceID": "22790",
"person": {
"name": "Nicolas MADURO MOROS",
"gender": "male",
"birthDate": "1962-11-23T00:00:00Z"
},
"addresses": [
{
"city": "Caracas",
"country": "VE"
}
]
},
"match": 0.9444444444444444
}
]
}
Name Search
The name search targets primary entity names across key watchlists:
GET /search?name=maduro&limit=2
Use this when: You’re specifically looking for matches against primary entity names.
Alternate Name Search
Many sanctioned entities operate under aliases or alternate names. This search targets those specifically:
GET /search?altNames=NATIONAL+BANK+OF+CUBA
Use this when: You’re looking for entities that might be using known aliases.
Address Search
Address search helps identify entities associated with specific locations:
GET /search?address=first+st&province=harare&country=zimbabwe
Available address parameters:
address
: Street address or general locationcity
: City namestate
: State or regionprovince
: Province namezip
: Postal or ZIP codecountry
: Country name
Filtering Results
Filtering is built into the entity model:
GET /v2/search?type=person&name=maduro&minMatch=0.8
Parameters:
minMatch
: Minimum match score (0.0-1.0) to include in resultslimit
: Maximum number of results to return (default: 10, max: 100)debug
: Include detailed scoring information when set to “true”
Best Practices
- Use specific IDs when available
- ID-based searches provide the highest confidence matches
- Example: government IDs, IMO numbers, passport numbers
- Combine multiple parameters
- Searching with name + address improves match quality
- Example:
?type=person&name=maduro&address=caracas&country=VE
- Adjust match thresholds
- Set
minMatch
parameter for filtering low-confidence matches - Configure match favoritism based on your risk tolerance
- Set
- Include contextual information
- Add dates, addresses, and identifiers when available
- Reduces false positives and improves match confidence
API Documentation
For complete API details, refer to the API Documentation.