API Documentation
Endpoints
Sample Match
Find the k closest matching records for a given query record
POST
/
custom
/
sample
/
match
[
{
"record": {
"code": "HEPP37ST",
"company_name": "HEPPNER - SOCIETE DE TRANSPORTS",
"SIREN": "763200202",
"VAT_number": "FR42169800202",
"city": "ST PIERRE DES CORPS",
"postal_code": "37700",
"country": "FR",
"email": "jean-michel@heppner-group.com"
},
"similarity": 0.95
},
{
"record": {
"code": "HEPP75PA",
"company_name": "HEPPNER TRANSPORT SAS",
"SIREN": "763200203",
"VAT_number": "FR42169800203",
"city": "PARIS",
"postal_code": "75001",
"country": "FR",
"email": "contact@heppner-group.com"
},
"similarity": 0.85
}
]
Body
application/json
Response
200
application/json
Successful matching results
The response is of type object[]
.
[
{
"record": {
"code": "HEPP37ST",
"company_name": "HEPPNER - SOCIETE DE TRANSPORTS",
"SIREN": "763200202",
"VAT_number": "FR42169800202",
"city": "ST PIERRE DES CORPS",
"postal_code": "37700",
"country": "FR",
"email": "jean-michel@heppner-group.com"
},
"similarity": 0.95
},
{
"record": {
"code": "HEPP75PA",
"company_name": "HEPPNER TRANSPORT SAS",
"SIREN": "763200203",
"VAT_number": "FR42169800203",
"city": "PARIS",
"postal_code": "75001",
"country": "FR",
"email": "contact@heppner-group.com"
},
"similarity": 0.85
}
]