コンテンツにスキップ
アカウントを作成
または
サインイン
Stripe ドキュメントのロゴ
/
AI に質問する
アカウントを作成
サインイン
始める
支払い
財務の自動化
プラットフォームおよびマーケットプレイス
資金管理
開発者向けのツール
始める
支払い
財務の自動化
始める
支払い
財務の自動化
プラットフォームおよびマーケットプレイス
資金管理
概要
Stripe Payments について
構築済みのシステムをアップグレード
支払いの分析
オンライン決済
概要ユースケースを見つけるManaged Payments
Payment Links を使用する
決済ページを構築
    概要
    クイックスタート
    デザインをカスタマイズする
    追加情報を収集する
    税金を徴収する
    決済フローを動的に更新
    商品カタログを管理する
    サブスクリプション
    決済手段を管理
    顧客が現地通貨で支払いできるようにする
      手動による通貨の価格を定義
    割引、アップセル、オプション品目を追加する
    将来の支払いを設定する
    支払い中に支払い詳細を保存する
    サーバーで支払いを手動で承認する
    支払い後
    Elements with Checkout Sessions API ベータ版の変更ログ
    従来の Checkout からの移行
    Checkout を移行して Prices を使用
高度なシステムを構築
アプリ内実装を構築
決済手段
決済手段を追加
決済手段を管理
Link による購入の迅速化
支払いインターフェイス
Payment Links
Checkout
Web Elements
アプリ内 Elements
決済シナリオ
カスタムの決済フロー
柔軟なアクワイアリング
オーケストレーション
店頭支払い
端末
他の Stripe プロダクト
Financial Connections
仮想通貨
Climate
ホーム支払いBuild a checkout page

注

このページはまだ日本語ではご利用いただけません。より多くの言語で文書が閲覧できるように現在取り組んでいます。準備が整い次第、翻訳版を提供いたしますので、もう少しお待ちください。

Adaptive Pricing

Adaptive Pricing で顧客が現地通貨で支払えるようにすることで、海外での収益を増やすことができます。

ページをコピー

Adaptive Pricing によって、顧客は 150 カ国以上で現地通貨を使って支払うことができます。Adaptive Pricing では、Stripe が地域に合わせた料金を自動的に計算し、すべての通貨換算を処理します。取引通貨は、顧客のパブリック IP アドレスから推測されます。Adaptive Pricing を有効にすると、世界中の顧客からの購入完了率が高まり、国外からの売上が増加する可能性があります。

Adaptive Pricing は以下の用途に使用します。

  • 場所に応じた現地通貨で料金を表示する
  • 24 時間保証された為替レートを使用してリアルタイムで価格を計算する
  • 現地通貨を必要とする支払い方法を利用可能にする
  • サポート対象の通貨を提示することで法令遵守を円滑に実現
フランスの顧客には、アメリカドルからユーロに換算された料金が表示されます

実装の負荷

ノーコード

手数料

料金とよくあるご質問に記載されている情報をご覧ください。

Adaptive Pricing の管理
ダッシュボード

支払い設定で Adaptive Pricing を管理します。Adaptive Pricing は、サンドボックスと本番環境で有効にできます。Adaptive Pricing を無効にしても、すでに換算が実行されている Checkout セッションには影響しません。

地域固有の決済手段を設定する
ダッシュボード

Adaptive Pricing can increase the usage of local payment methods by ensuring customers have the option to pay in their local currency and with payment methods most relevant to them. As an example, 70% of all e-commerce transactions in the Netherlands use iDEAL, but it only works with EUR. You can configure which payment methods you accept in your payment methods settings if you use dynamic payment methods. Adaptive Pricing unlocks access to the following payment methods that require presenting in local currency:

  • Bancontact
  • EPS
  • iDEAL
  • Link
  • P24

イベントの送信先とレポート
サーバー側

Adaptive Pricing can affect some parts of your integration, such as event destinations and reporting. Review your integration to make sure any event destinations can handle PaymentIntent objects with local currencies.

  • Use the Checkout Session object’s currency and total amount to determine what your customer paid in your integration currency, which is the currency you specified for your prices.
  • Use the presentment_details hash on the Checkout Session object to determine what your customer paid in their local currency.

The Checkout Session and the underlying PaymentIntent objects reflect your integration currency and amount.

顧客が現地通貨で支払った場合、checkout.session.completed イベントには presentment_amount と presentment_currency を含む presentment_details ハッシュが含まれます。金額と通貨には、顧客の現地通貨での支払い情報が反映されます。

{ "id":
'{{EVENT_ID}}'
, "object": "event", "type": "checkout.session.completed", "data": { "object": { "id":
'{{SESSION_ID}}'
, "object": "checkout.session", "currency": "usd", "amount_total": 1000, "amount_subtotal": 1000, "presentment_details": { "presentment_amount": 1370, "presentment_currency": "cad" } } } }

テスト

現地の通貨の提示をテストするには、メールアドレスの現地の部分に +location_XX 形式のサフィックスを含めた、地域に応じた形式の顧客メールアドレスを渡します。XX は有効な 2 文字の ISO 国コードである必要があります。

たとえば、フランスの顧客に対する通貨の提示をテストするには、test+location_FR@example.com などのメールアドレスを渡します。地域に応じた形式のメールアドレスで作成された Checkout セッションには、指定した国と同じ通貨が表示されます。

Command Line
cURL
curl https://api.stripe.com/v1/checkout/sessions \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
: \ -d "line_items[0][price]"="{{PRICE_ID}}" \ -d "line_items[0][quantity]"=1 \ -d mode=payment \ -d ui_mode=embedded \ -d return_url="https://example.com/return" \ --data-urlencode customer_email="test+location_FR@example.com"

Customer を作成し、+location_XX サフィックスを含むメールアドレスを指定することもできます。Stripe テストカードは通常どおり機能します。

制限

現在、Adaptive Pricing は、 Connect または Elements で Payment Intents API を使用しているビジネスではご利用いただけません。

Additionally, Adaptive Pricing requires the currency for your prices to be one of your settlement currencies. Prices automatically convert during checkout. This applies to prices you create and reference with a price ID and prices you create inline with price_data when you create a Checkout Session.

Adaptive Pricing は、次のような Checkout セッションには適用されません。

  • 明示的に定義した手動による通貨の価格が表示される場合。
  • subscription モードの場合。
  • application_fee_amount、on_behalf_of、transfer_data などの Connect パラメーターを使用している場合。
  • capture_method は manual にして使用します。
  • カスタムの金額を使用します。

Adaptive Pricing が対応していない Checkout セッションでは、料金を設定した元の通貨で料金が提示されます。

Supported Currencies

Businesses in supported regions can automatically convert prices to the local currencies of their customers in the following markets:

North America

South America

Europe

Asia

Oceania

Africa

Pricing

  • You pay 0%
  • Your customers pay 2-4%

You don’t directly pay any additional Stripe fees for Adaptive Pricing, as all such fees are paid for by your customers. The Stripe-provided exchange rate you present to your customers includes a conversion fee of between 2-4%, increasing their purchase price by a corresponding amount. Stripe determines the fee, which varies for the purposes of increasing customer conversion. Your customer doesn’t pay this fee if they choose to pay in your integration currency, but their bank’s exchange rate and fees might apply. For detailed information about current Stripe fees, see our pricing page.

Exchange rate

Stripe uses the mid-market exchange rate and applies a fee to guarantee the rate for the duration of the Checkout Session (up to 24 hours) through settlement. If the exchange rate changes by more than 5% in that time, Stripe might use the updated exchange rate to calculate your payout.

Learn more about how Stripe handles currency conversions and Adaptive Pricing fees.

Refunds

You can issue a refund in your integration currency, and Stripe refunds your customer in the currency they used to make the payment. The refund uses the same exchange rate as the original transaction, so there are no extra costs for you, and your customer gets back the exact amount they paid.

Learn more about how Stripe helps you manage refunds.

参照情報

  • Adaptive Pricing に関するよくあるご質問
このページはお役に立ちましたか。
はいいいえ
お困りのことがございましたら 、サポートにお問い合わせください。
早期アクセスプログラムにご参加ください。
変更ログをご覧ください。
ご不明な点がございましたら、お問い合わせください。
LLM ですか?llms.txt を読んでください。
Powered by Markdoc