New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
La API de Text Verifier permite a los usuarios comparar dos textos para determinar su similitud, facilitando la identificación de diferencias y semejanzas entre el contenido proporcionado. Al utilizar esta sección de la API, los usuarios pueden agilizar su proceso de verificación y asegurar la precisión de sus comparaciones de texto.
curl --request POST \
--url https://rest-api.argosidentity.com/v3/modules/match/text \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"textSet": {
"originalText": "argos",
"matchingText": "Arg0s"
},
"callbackUrl": "https://your-domain.com/callback"
}
'{
"similarity": 70
}Documentation Index
Fetch the complete documentation index at: https://developers.argosidentity.com/llms.txt
Use this file to discover all available pages before exploring further.
Show child attributes
The URL where the text comparison results will be sent upon completion. If a callbackUrl is provided, the process works asynchronously. If no callbackUrl is provided, the process operates synchronously.
"https://your-domain.com/callback"
Successful text comparison
Similarity percentage between the two texts
70
¿Esta página le ayudó?
curl --request POST \
--url https://rest-api.argosidentity.com/v3/modules/match/text \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"textSet": {
"originalText": "argos",
"matchingText": "Arg0s"
},
"callbackUrl": "https://your-domain.com/callback"
}
'{
"similarity": 70
}