v1

latestOpenAPI 3.0.02026-07-26441564.4 KB
Card2Crypto
Cardtocrypto
Card-2-crypto
checkout
donate
payment

Generate a checkout link to be paid with Card2Crypto

post/donate/pay

Request body

costinteger required

Payment cost in the number of cents (USD currency)

userIpstring required

IP Address of the buyer

metadataobject

Key-value pairs that get saved in VaultCord and forwarded to your webhook. Store things like account ID, order numbers, etc.

success_urlstring

Redirect the buyer to this URL after successful payment

failure_urlstring

Redirect the buyer to this URL if the credit card gets declined or rejected for fraudulent use

emailstring

(Optional) Email address of the customer, for reference purposes

useridstring

(Optional) Discord user ID of the buyer, for reference purposes

userFingerprintstring

(Optional) Browser fingerprint, for reference purposes

Example request

{
  "cost": 500,
  "userIp": "131.247.47.171",
  "metadata": {
    "foo": "bar",
    "any_random_value": "557edcdb-163d-4f7c-bb3b-ca65f190f330"
  },
  "success_url": "https://example.com/thank-you",
  "failure_url": "https://cucucovers.com/products/money-y-u-no-have",
  "email": "notexttospeech@gmail.com",
  "userid": "720820224877789204",
  "userFingerprint": "1a5423084a51bd2b47fe3aedde108b0c"
}

Response

Successfully created checkout URL, redirect the customer to the below link.

successboolean
urlstring
tier_cachedboolean
referencestring

This will be sent from our rest API webhook, in case you would like to save for later linking requests together.

created_atinteger
timestampstring
userEmailstring
userIpstring
userFingerprintstring
metadataobject

Key-value pairs that get saved in VaultCord and forwarded to your webhook. Store things like account ID, order numbers, etc.

success_urlstring

Redirect the buyer to this URL after successful payment

failure_urlstring

Redirect the buyer to this URL if the credit card gets declined or rejected for fraudulent use

Example response

{
  "success": true,
  "url": "https://nelson-cybersecurity-llc.myhelcim.com/hosted/?token=14afb0b2d4b9d92ea69bb3",
  "tier_cached": true,
  "reference": "d9c0aa46d08946718b1d3055f502333a",
  "created_at": 1768362879,
  "timestamp": "2026-01-14T03:54:39.000Z",
  "userEmail": "notexttospeech@gmail.com",
  "userIp": "131.247.47.171",
  "userFingerprint": "1a5423084a51bd2b47fe3aedde108b0c",
  "metadata": {
    "foo": "bar",
    "any_random_value": "557edcdb-163d-4f7c-bb3b-ca65f190f330"
  },
  "success_url": "https://example.com/thank-you",
  "failure_url": "https://cucucovers.com/products/money-y-u-no-have"
}