Global
Sample Match
Find the k closest matching records for a given query record
POST
Body
application/json
Record to match against the database
Example:
{
"SIREN": "763200202",
"VAT_number": "FR42169800202",
"city": "ST PIERRE DES CORPS",
"company_name": "HEPPNER - SOCIETE DE TRANSPORTS",
"country": "FR",
"email": "jean-michel@heppner-group.com",
"postal_code": "37700",
"reasoning___VAT_number": "Found VAT number FR42169800202 in header of the document."
}
Number of matching results to return
Required range:
1 <= x <= 100
Example:
20
Response
200
application/json
Successful matching results
The matched record containing company information
Example:
{
"SIREN": "763200202",
"VAT_number": "FR42169800202",
"city": "ST PIERRE DES CORPS",
"company_name": "HEPPNER - SOCIETE DE TRANSPORTS",
"country": "FR",
"email": "jean-michel@heppner-group.com",
"postal_code": "37700",
"reasoning___VAT_number": "Found VAT number FR42169800202 in header of the document."
}
Similarity score between 0 and 1, where 1 indicates a perfect match
Required range:
0 <= x <= 1
Example:
0.95