おすすめ記事ピックアップ

横スクロール出来ます(スマホ用)→
2026年4月現在おすすめのオファー USクレカポイ活ビギナーズガイド QandA アメリカンエクスプレスによろしくサイトマップ
現在おすすめのカード! ビギナーズガイド USクレカQ&A サイトマップ

プロモーションについて

当サイト及び本ページにはプロモーションが含まれております。

当サイトのリンクからクレジットカード・銀行口座等を申し込んだ場合、各会社から報酬を受け取る場合があります。

また以下のリンクのようなAmazon Associateリンクからの購入からも収入を得ています。
当サイトを支援していただける方はAmazonを利用する際に以下のリンクからお買い物していただけると私にマージンが入る仕組みなのでよろしくお願いします。
当サイトのAmazonAssociateから購入する

2026/02/09

【期間限定】U.S. Bank TRIPLE CASH REWARDS Business Card に $750 オファー!


US Bank の TRIPLE CASH REWARDS に期間限定サインアップボーナスが出現したので情報をシェアします。


【オファー内容】

U.S. Bank Triple Cash Rewards Visa Business Card

今回の期間限定オファー

  • 180日以内に $6,000 の利用で $750 を獲得
  • 比較用

  • 通常オファー:150日以内に $4,500 の利用で $500 を獲得
  • 過去の限定オファー1:150日以内に $4,500 の利用で $600 を獲得
  • 過去の限定オファー2:180日以内に $6,000 の利用で $750 を獲得
  • オファーリンクはこちら
    →公式オファーリンク←


    【カード概要】

    U.S. Bank Triple Cash Rewards Visa Business Card

    U.S. Bank Triple Cash Rewards Visa Business Card
  • 年会費:$0
  • US Bank Travel Rewards Center を通して予約した前払いのホテルとレンタカーで 5% キャッシュバック
  • ガソリン、EVの充電スタンド、事務用品店、携帯電話サービスプロバイダー、レストランで 3% キャッシュバック
  • その他 1% キャッシュバック
  • 最初の15請求サイクルは利率0%
  • $100 ソフトウェアクレジット(FreshBooks や QuickBooks のサブスクリプション費用で利用可)

  • 【US Bank のクレジットカードについて】

    US Bank
  • US Bank クレジットカードの所有できる枚数に厳密な制限はありません。ただし多くのカードを持っているほど承認は難しくなります。
  • 過去にカードを持っていた場合でもサインアップ ボーナスを獲得できますが、現在持っているカードを新たに作ることは出来ません。
  • これらの US Bank のビジネスカードを取得するためには既存の関係が必要です。つまり銀行口座や他のクレジットカードなどを既に持っている必要があります。
  • US Bank はビジネスクレジットカードを個人信用調査機関に報告しないため、Chase 5/24 ルール内に留まろうとしている人にとっては有用です。
  • 一般的に承認が下りにくいカード会社(銀行)です。少なくとも720以上のクレジットスコアと2年間のクレジットヒストリーを用意してから申し込むことをおすすめします。

  • 【オファー感想】

    評価

    年会費無料のビジネスカードで$6,000のミニスぺで$750を獲得と、Chase Ink カードのようなボーナスで非常に美味しいです
    ミニマムスペンドの額はやや大きいものの、180日間という寛大な期間が設けられているので達成も難しくないでしょう。

    US Bank のカードの承認は既存の関係が無いと難しいと言われていますので、持っていない方は銀行口座を作ることも検討してみるとよいでしょう。


    以上、お読みいただきありがとうございました。皆さまのクレジットカードの作成の一助になれば幸いです。
    X(旧Twitter)もやってますので是非フォローしてください。


    ブログランキング参加しています。よろしければクリックをお願いします。

    にほんブログ村 海外生活ブログ アメリカ情報へ ' + text + ''; } } } return text; } var parse = function(data) { cursor = null; var comments = []; if (data && data.feed && data.feed.entry) { for (var i = 0, entry; entry = data.feed.entry[i]; i++) { var comment = {}; // comment ID, parsed out of the original id format var id = /blog-(\d+).post-(\d+)/.exec(entry.id.$t); comment.id = id ? id[2] : null; comment.body = bodyFromEntry(entry); comment.timestamp = Date.parse(entry.published.$t) + ''; if (entry.author && entry.author.constructor === Array) { var auth = entry.author[0]; if (auth) { comment.author = { name: (auth.name ? auth.name.$t : undefined), profileUrl: (auth.uri ? auth.uri.$t : undefined), avatarUrl: (auth.gd$image ? auth.gd$image.src : undefined) }; } } if (entry.link) { if (entry.link[2]) { comment.link = comment.permalink = entry.link[2].href; } if (entry.link[3]) { var pid = /.*comments\/default\/(\d+)\?.*/.exec(entry.link[3].href); if (pid && pid[1]) { comment.parentId = pid[1]; } } } comment.deleteclass = 'item-control blog-admin'; if (entry.gd$extendedProperty) { for (var k in entry.gd$extendedProperty) { if (entry.gd$extendedProperty[k].name == 'blogger.itemClass') { comment.deleteclass += ' ' + entry.gd$extendedProperty[k].value; } else if (entry.gd$extendedProperty[k].name == 'blogger.displayTime') { comment.displayTime = entry.gd$extendedProperty[k].value; } } } comments.push(comment); } } return comments; }; var paginator = function(callback) { if (hasMore()) { var url = config.feed + '?alt=json&v=2&orderby=published&reverse=false&max-results=50'; if (cursor) { url += '&published-min=' + new Date(cursor).toISOString(); } window.bloggercomments = function(data) { var parsed = parse(data); cursor = parsed.length < 50 ? null : parseInt(parsed[parsed.length - 1].timestamp) + 1 callback(parsed); window.bloggercomments = null; } url += '&callback=bloggercomments'; var script = document.createElement('script'); script.type = 'text/javascript'; script.src = url; document.getElementsByTagName('head')[0].appendChild(script); } }; var hasMore = function() { return !!cursor; }; var getMeta = function(key, comment) { if ('iswriter' == key) { var matches = !!comment.author && comment.author.name == config.authorName && comment.author.profileUrl == config.authorUrl; return matches ? 'true' : ''; } else if ('deletelink' == key) { return config.baseUri + '/comment/delete/' + config.blogId + '/' + comment.id; } else if ('deleteclass' == key) { return comment.deleteclass; } return ''; }; var replybox = null; var replyUrlParts = null; var replyParent = undefined; var onReply = function(commentId, domId) { if (replybox == null) { // lazily cache replybox, and adjust to suit this style: replybox = document.getElementById('comment-editor'); if (replybox != null) { replybox.height = '250px'; replybox.style.display = 'block'; replyUrlParts = replybox.src.split('#'); } } if (replybox && (commentId !== replyParent)) { replybox.src = ''; document.getElementById(domId).insertBefore(replybox, null); replybox.src = replyUrlParts[0] + (commentId ? '&parentID=' + commentId : '') + '#' + replyUrlParts[1]; replyParent = commentId; } }; var hash = (window.location.hash || '#').substring(1); var startThread, targetComment; if (/^comment-form_/.test(hash)) { startThread = hash.substring('comment-form_'.length); } else if (/^c[0-9]+$/.test(hash)) { targetComment = hash.substring(1); } // Configure commenting API: var configJso = { 'maxDepth': config.maxThreadDepth }; var provider = { 'id': config.postId, 'data': items, 'loadNext': paginator, 'hasMore': hasMore, 'getMeta': getMeta, 'onReply': onReply, 'rendered': true, 'initComment': targetComment, 'initReplyThread': startThread, 'config': configJso, 'messages': msgs }; var render = function() { if (window.goog && window.goog.comments) { var holder = document.getElementById('comment-holder'); window.goog.comments.render(holder, provider); } }; // render now, or queue to render when library loads: if (window.goog && window.goog.comments) { render(); } else { window.goog = window.goog || {}; window.goog.comments = window.goog.comments || {}; window.goog.comments.loadQueue = window.goog.comments.loadQueue || []; window.goog.comments.loadQueue.push(render); } })(); // ]]>
    1. どのカードのトピックスもわかりやすく、いつも参考にさせていただいています。
      このカードのキャッシュバックについて質問させてください。
      獲得したリワードはどのようにキャッシュバックされるのでしょうか。
      Autopayを設定している銀行口座に入金されるのでしょうか。
      よろしくお願いします。

      返信削除
      返信
      1. 私自身が持っていないので詳細までは分かりかねますが、自動ではなくマニュアルで、statement creditとして引き換える、U.S. Bankの口座に入金するなどのオプションがあるようです。

        削除
    2. 匿名5/22/2025

      クレビーさん、回答ありがとうございます。
      このカード、$750も魅力的なので、いいかなと考えています。
      検討します!

      返信削除
      返信
      1. 私も欲しいのですが2回とも承認されなかったので諦めモードです。
        申請した時は無事承認されることを祈っています!

        削除
    3. 匿名5/26/2025

      達人のクレビーさんでも承認されないクレカがあるのですね。
      とするとこのカード、ビギナーが承認を得るのは厳しいのかもしれませんね…

      返信削除