search-records
Search historical records in FamilySearch by entering names, birth/death dates, places, or specific collection IDs to retrieve relevant genealogical data efficiently.
Instructions
Search for historical records in FamilySearch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
birthDate | No | Birth date (YYYY-MM-DD) | |
birthPlace | No | Birth place | |
collectionId | No | Specific collection ID to search in | |
deathDate | No | Death date (YYYY-MM-DD) | |
deathPlace | No | Death place | |
givenName | No | Given name | |
limit | No | Maximum number of results (default: 10) | |
surname | No | Surname/last name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"birthDate": {
"description": "Birth date (YYYY-MM-DD)",
"type": "string"
},
"birthPlace": {
"description": "Birth place",
"type": "string"
},
"collectionId": {
"description": "Specific collection ID to search in",
"type": "string"
},
"deathDate": {
"description": "Death date (YYYY-MM-DD)",
"type": "string"
},
"deathPlace": {
"description": "Death place",
"type": "string"
},
"givenName": {
"description": "Given name",
"type": "string"
},
"limit": {
"description": "Maximum number of results (default: 10)",
"type": "number"
},
"surname": {
"description": "Surname/last name",
"type": "string"
}
},
"type": "object"
}