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 →
The Text Verifier API allows users to compare two texts for similarity, enabling them to easily identify differences and similarities between the provided content. By utilizing this API section, users can streamline their verification process and ensure the accuracy of their text comparisons.
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.
Successful text comparison
Similarity percentage between the two texts
70
이 페이지가 도움이 되었나요?
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
}