Dark mode switch

Try Out Tokenization

Tokenize your sensitive data securely using VGS Vault. Get started here to successfully use VGS Vault to tokenize and de-tokenize sensitive data. This guide will take less than five minutes to complete.

Create your First Tokens

Tokenizing is the act of securely redacting and storing sensitive information in your VGS Vault. Each piece of information stored within VGS Vault is called a token. You can store up to 20 tokens in one API call. You can view the VGS Vault REST API documentation to see the parameters the API accepts and returns.

Card Number
Card Name
Expiration Date
Security Code
curl https://api.sandbox.verygoodvault.com/aliases \
  -X POST \
  -u US7oyrzRGmaKqi3ET8eSsECS:c06cf6d1-a35e-439d-91d1-8bd04e5fd9e5 \
  -H 'Content-Type: application/json' \
  -d '{
    "data": [
      {
        "value": "4242424242424242",
        "classifiers": [
          "card_number"
        ],
        "format": "UUID"
      },
      {
        "value": "Joe Business",
        "classifiers": [
          "card_name"
        ],
        "format": "UUID"
      },
      {
        "value": "12/24",
        "classifiers": [
          "expiration_date"
        ],
        "format": "UUID"
      },
      {
        "value": "123",
        "classifiers": [
          "cvc"
        ],
        "format": "UUID"
      }
    ]
  }'
Bash
Execute code to see the response

Retrieve your Tokens

Retrieving your token is the act of revealing securely stored information from your VGS Vault. You pass the Vault API your token to reveal the underlying sensitive information. Up to 20 tokens can be revealed in a single API call

Card Number
Card Name
Expiration Date
Security Code
curl https://api.sandbox.verygoodvault.com/aliases\?q=,,, \
 -u US7oyrzRGmaKqi3ET8eSsECS:c06cf6d1-a35e-439d-91d1-8bd04e5fd9e5 \
 -H 'Content-Type: application/json'
Bash
Execute code to see the response

Next Steps