GramJS

payments.GetBankCardData

Get info about a credit card

Example

const { Api, TelegramClient } = require("telegram");
const { StringSession } = require("telegram/sessions");

const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
  await client.connect(); // This assumes you have already authenticated with .start()

  const result = await client.invoke(
    new Api.payments.GetBankCardData({
      number: "some string here",
    })
  );
  console.log(result); // prints the result
})();
import { Api, TelegramClient } from "telegram";
import { StringSession } from "telegram/sessions";

const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
  await client.connect(); // This assumes you have already authenticated with .start()

  const result: Api.payments.BankCardData = await client.invoke(
    new Api.payments.GetBankCardData({
      number: "some string here",
    })
  );
  console.log(result); // prints the result
})();

Parameters

NameTypeDescription
numberstringCredit card number

Result

payments.BankCardData

Possible errors

CodeTypeDescription
400BANK_CARD_NUMBER_INVALIDThe specified card number is invalid.

Can bots use this method?

No