cent.app Open in urlscan Pro
2606:4700:20::681a:e83  Public Scan

Submitted URL: http://cent.app/
Effective URL: https://cent.app/
Submission: On November 28 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

<form wire:id="r6zeMeYaRufanfLnb3zN" wire:submit.prevent="submit">
  <div class="bg-gray shadow-xl rounded-2xl p-6">
    <div class="text-xl font-medium mb-2"> Sender </div>
    <div class="form-group mb-4">
      <div>
        <div class="input-container" x-init="checkValue()">
          <label for="senderCard" class="input-container__label text-xs" @click="labelClick()"> Card number </label>
          <input id="senderCard" @focus="focus()" @focusout="focusout()" type="text" class="input-container__input text-sm bg-white" placeholder="4242 4242 4242 4242" autocomplete="cc-number" wire:model.debounce.500ms="senderCard">
        </div>
      </div>
    </div>
    <div class="grid grid-cols-2 gap-5 mb-5">
      <div class="col-span-2 sm:col-span-1">
        <div maxlength="5">
          <div class="input-container" x-init="checkValue()">
            <label for="exp" class="input-container__label text-xs" @click="labelClick()"> Expiration date </label>
            <input id="exp" @focus="focus()" @focusout="focusout()" type="text" class="input-container__input text-sm bg-white" placeholder="09/29" autocomplete="cc-exp" wire:model.defer="exp" maxlength="5">
          </div>
        </div>
      </div>
      <div class="col-span-2 sm:col-span-1">
        <div>
          <div class="input-container" x-init="checkValue()">
            <label for="cvc" class="input-container__label text-xs" @click="labelClick()"> CVC/CVV code </label>
            <input id="cvc" @focus="focus()" @focusout="focusout()" type="password" class="input-container__input text-sm bg-white" placeholder="***" autocomplete="cc-csc" wire:model.defer="cvc">
          </div>
        </div>
      </div>
    </div>
    <div class="text-xl font-medium mb-2"> Reciever </div>
    <div class="form-group mb-4">
      <div>
        <div class="input-container" x-init="checkValue()">
          <label for="recieverCard" class="input-container__label text-xs" @click="labelClick()"> Card number </label>
          <input id="recieverCard" @focus="focus()" @focusout="focusout()" type="text" class="input-container__input text-sm bg-white" placeholder="4242 4242 4242 4242" autocomplete="cc-number" wire:model.debounce.500ms="recieverCard">
        </div>
      </div>
    </div>
    <div class="grid grid-cols-2 gap-8">
      <div class="form-group mb-4">
        <div maxlength="5">
          <div class="input-container" x-init="checkValue()">
            <label for="amount" class="input-container__label text-xs" @click="labelClick()"> Amount </label>
            <input id="amount" @focus="focus()" @focusout="focusout()" type="text" class="input-container__input text-sm bg-white" placeholder="149" inputmode="numeric" wire:model.debounce.500ms="amount">
          </div>
        </div>
      </div>
      <div class="form-group mb-4">
        <div class="relative rounded-lg font-medium" x-data="{ show : false }">
          <label for="currency" class="absolute left-4.5 text-gray-mid transform transition-all duration-150 cursor-text top-2 translate-y-0 text-xs"> Currency </label>
          <div id="currency" wire:model="currency" x-on:click="show = !show" x-on:click.away="show = false" class="
            rounded-lg block w-full transition duration-150 ease-in-out sm:leading-5 text-left px-4.5 bg-white
            pt-6 pb-2
            cursor-pointer
            border-blue
        ">
            <span class="block truncate text-sm text-black">RUB</span>
            <span class="absolute inset-y-0 right-0 flex items-center pr-2 pointer-events-none">
              <svg class="h-5 w-5 text-gray-mid" viewBox="0 0 20 20" fill="none" stroke="currentColor">
                <path d="M7 7l3-3 3 3m0 6l-3 3-3-3" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
              </svg>
            </span>
          </div>
          <div x-show.transition.opacity="show" class="absolute mt-1 w-full rounded-lg bg-white shadow-lg z-30" style="display: none;">
            <ul tabindex="-1" role="listbox" aria-labelledby="listbox-label" aria-activedescendant="listbox-item-3" class="max-h-96 rounded-lg py-1 text-base leading-6 shadow-xs overflow-auto focus:outline-none sm:text-sm sm:leading-5 bg-white">
              <li wire:click="$set('currency', 'RUB')" x-on:click="show = !show" class="text-black cursor-pointer select-none relative py-3 pl-3 pr-9 hover:bg-gray-dark transition-all duration-100 flex">
                <span class="text-left inline-block truncate font-bold">
                  <div>RUB</div>
                </span>
                <span class="absolute inset-y-0 right-0 items-center pr-4 flex">
                  <svg class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                    <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
                  </svg>
                </span>
              </li>
              <li wire:click="$set('currency', 'KZT')" x-on:click="show = !show" class="text-black cursor-pointer select-none relative py-3 pl-3 pr-9 hover:bg-gray-dark transition-all duration-100 flex">
                <span class="text-left inline-block truncate font-medium">
                  <div>KZT</div>
                </span>
                <span class="absolute inset-y-0 right-0 items-center pr-4 hidden">
                  <svg class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                    <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
                  </svg>
                </span>
              </li>
              <li wire:click="$set('currency', 'USD')" x-on:click="show = !show" class="text-black cursor-pointer select-none relative py-3 pl-3 pr-9 hover:bg-gray-dark transition-all duration-100 flex">
                <span class="text-left inline-block truncate font-medium">
                  <div>USD</div>
                </span>
                <span class="absolute inset-y-0 right-0 items-center pr-4 hidden">
                  <svg class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                    <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
                  </svg>
                </span>
              </li>
              <li wire:click="$set('currency', 'EUR')" x-on:click="show = !show" class="text-black cursor-pointer select-none relative py-3 pl-3 pr-9 hover:bg-gray-dark transition-all duration-100 flex">
                <span class="text-left inline-block truncate font-medium">
                  <div>EUR</div>
                </span>
                <span class="absolute inset-y-0 right-0 items-center pr-4 hidden">
                  <svg class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
                    <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
                  </svg>
                </span>
              </li>
            </ul>
          </div>
        </div>
      </div>
    </div>
  </div>
  <div class="my-6">
    <div class="text-center"> &nbsp; </div>
  </div>
  <div class="text-center">
    <button type="submit" class="text-lg text-white bg-blue hover:bg-blue-dark rounded-full py-3.5 px-8 font-bold text-center inline-block transition-bg duration-100 shadow-lg w-full max-w-xs"> Send </button>
  </div>
  <script>
    document.addEventListener('DOMContentLoaded', () => {
      if (document.getElementById('senderCard')) {
        IMask(document.getElementById('senderCard'), {
          mask: '0000 0000 0000 0000000',
        });
      }
      if (document.getElementById('recieverCard')) {
        IMask(document.getElementById('recieverCard'), {
          mask: '0000 0000 0000 0000000',
        });
      }
      if (document.getElementById('exp')) {
        IMask(document.getElementById('exp'), {
          mask: '00/00'
        });
      }
      if (document.getElementById('cvc')) {
        IMask(document.getElementById('cvc'), {
          mask: '000'
        });
      }
    })
  </script>
</form>

Text Content

 * 
 * Payment Solutions
 * Demo
 * API
 * Sign in
 * Sign up

Instant cards transfers
Transfer funds between cards of any banks
Sender
Card number
Expiration date
CVC/CVV code
Reciever
Card number
Amount
Currency
RUB
 * RUB
 * KZT
 * USD
 * EUR

 
Send
Send and receive funds in various currencies

US dollars
Euros
Rubles
Tenge
Simple and safe way to transfer money

Comfortable

You can transfer money between cards of any banks

Simple

Find out 16 digits of the recipient's card and fill out a simple form

Fast

Just wait a couple of minutes. Money will be on the card almost instantly

Comfortable

You can transfer money between cards of any banks

Simple

Find out 16 digits of the recipient's card and fill out a simple form

Fast

Just wait a couple of minutes. Money will be on the card almost instantly

Comfortable

You can transfer money between cards of any banks

Simple

Find out 16 digits of the recipient's card and fill out a simple form

Fast

Just wait a couple of minutes. Money will be on the card almost instantly

‹›

How to send funds to card?

 1. Provide your card details, including card number, name, and expiration date.
    Ensure the accuracy of the information.
 2. Provide the recipient's card details: number and cardholder name.
 3. Specify the amount and you are done.



Send funds
How to receive funds?

 1. Send your transfer link via messenger app, social network, email or using
    the auto-generated QR code to the sender.
 2. Provide withdrawal card details.
 3. Specify the amount and you are done.



Receive funds

FAQ
How it works?

To transfer, you need to fill in the number, expiration date, CVV / CVC code of
the sender's card, as well as the recipient's card number and the amount of the
transfer.

What is the transfer limit?

The transfer amount should not exceed the amount in tenge equal to 2,000 US
dollars at the current exchange rate.

From which bank cards can I make transfers?

You can make transfers between cards of any Kazakhstan Bank, as well as Russian
Banks and other banks of CIS region.

Is data security guaranteed?

The transfer system works according to the TLS security protocol, which
guarantees the protection of the data entered by the client, including card
data.

What is CVV2, CVC2?

3-digit code, which is located on the back of the card, is required for
additional authentication of the cardholder. With this code, the card is
eligible for online payment.

What to do in case of an error?

Perhaps the error is related to the security settings of your browser. Try
enabling cookies or changing your browser settings or contact our support team.

Send and receive funds with
Try now
 * Affiliate program
 * support@cent.app
 * Reference
 * Terms of Use
 * 



 *