Verifications
Verifications are an integral part of vault as they ensure the cards that are uploaded, are correct and contain the information from the website it is linked to. On this page, we’ll dive into the different verification routes you can use to manage verifications programmatically. We'll look at how to create verifications.
Properties
- Name
score
- Type
- integer
- Description
How similar the card is the website it is linked to.
Verify a card
This route allows you to verify a card. You can verify a card by either providing the card id or by simply passing in a link and card body.
Content Verification
- Name
content
- Type
- string
- Description
The content of the card.
- Name
url_source
- Type
- string
- Description
The URL of the website the card is linked to.
Card Verification
- Name
card_uuid
- Type
- string
- Description
The id of the card you wish to verify.
Response
If the response is successful it will return a 200 status code and the score of the card.
- Name
score
- Type
- integer
- Description
How similar the card is the website it is linked to.
Request
curl -L 'http://api.arguflow.ai/api/verification' \
-H 'Content-Type: application/json' \
-H 'Cookie: ai-editor=your_cookie_value_here' \
-d '{
"card_uuid": "0c6cc3dc-2069-4f5e-a306-eed3f13ac16e"
}'
Response
{
"score": 100
}