- Family Graph API
- Objects
- Album
- Audio
- ChildInFamily
- Citation
- Document
- Event
- EventDate
- ExportGEDCOM
- ExportGEDCOMStatus
- Family
- FamilyEvent
- Image
- Individual
- MatchingRequest
- MediaItem
- Membership
- Note
- Photo
- RecordMatchesCount
- Relationship
- Site
- SmartMatch
- Source
- SubTree
- Tag
- Tree
- TreeItem
- Video
- User
- SDKs
- PHP SDK
- iOS SDK
- Android SDK
SmartMatch
A Smart Match between two individuals in two different family trees as represented in the Family Graph API.
Smart Matches are links between two individuals in two different family trees who are thought to be the same person.
Fields
The SmartMatch object contains the following fields:
| Name | Description | Returns |
individual |
The matching individual in the matching tree |
Individual object id and name fields |
status |
Smart Match has been confirmed in the source tree
|
string |
quality |
The quality of the match in percent (0-100) |
int |
Example
https://familygraph.myheritage.com/individual-144530322-1000167/smartmatches?offset=0&limit=4 (open in browser){
"count": 1,
"data": [
{
"individual": {
"id": "individual-133445471-2000668",
"name": "<Private>"
},
"status": "confirmed",
"quality": 84
}
]
}