10月25日(水)・26日(木)にKOMOJU売上アップセミナーを開催します!

オンライン決済を
もっと簡単に

KOMOJU は革新的なオンライン決済を提供する決済プラットフォームです。

金融機関、決済ネットワーク、銀行、各種ウォレットと緊密に連携することで、オールインワン決済サービスの提供を実現しています。

KOMOJU ができること

KOMOJU は、現在数千社もの企業、個人事業主の皆様のオンライン決済を支援しているテクノロジー企業です。

私たちは、業界をリードする決済代行サービスを提供することで、決済処理や会計業務の煩雑さを解消し、お客様のビジネス成長をサポートしています。

対応プラットフォーム

KOMOJU を利用中のお客様

KOMOJU を利用中のお
客様

KOMOJU は日本、韓国、ヨーロッパにおいて世界的企業の決済処理を行っています。
KOMOJU では、お客様のご要望に応じた決済処理を提供しています。

いろいろ選べる
決済方法

私たちのプラットフォームは、日本、韓国、ヨーロッパで利用されている多くの決済手段をサポートしています。 さらに、それら複数の市場における消費者向けの取引すべてを 1 つの契約、1 回の導入でカバーします。

不正
検知

当社独自の不正防止システムは、不正な取引を事前に検知し、不要なチャージバック、その他の不正行為を未然に防ぎます。 システムは機械学習により自動的に最適化されます。

不正
検知

当社独自の不正防止システムは、不正な取引を事前に検知し、不要なチャージバック、その他の不正行為を未然に防ぎます。 システムは機械学習により自動的に最適化されます。

シンプルな
導入

あなたのウェブサイトに KOMOJU を追加するのに手間はかかりません。Shopify、Wix、PrestaShop など、人気の EC プラットフォームへの導入手段を提供しています。

オンライン決済 API

当社は最良の決済ソリューションはコードによって実現されると考えます。

したがって、最良の API 提供に集中し、最高のユーザーエクスペリエンスをお客様にもたらすべく、わずかな時間で実装な可能なシンプルな API を提供します。

 

1
2
3
4
5
6
7
8
9
10

client = Komoju.connect(“api-secret-key”)
client.payments.show
(“55404024b7b0dd6ec490158925”)
payment_details = {
    type: “konbini”,
    store: “lawson”,
    email: “user@example.com”,
    phone: “08011111111”
}
client.payments.create(amount: 100,
    currency: “JPY”,
    external_order_num: “123”,
    payment_details: payment_details)
   

1
2
3
4
5
6
7
8
9
10

var querystring = require(‘querystring’);
var https = require(‘https’);
var secret_key = ‘sk_123456’
var auth = ‘Basic ‘ + Buffer.from(secret_key + ‘:’).toString(‘base64’);
var post_data = querystring.stringify({
‘amount’: ‘1000’,
‘currency’: ‘JPY’,
‘external_order_num’: ‘123’,
‘metadata[foobar]’: ‘hoge’,
‘payment_details[email]’: ‘test@example.com’,
‘payment_details[month]’: ’01’,
‘payment_details[name]’: ‘Taro Yamada’,
‘payment_details[number]’: ‘4111111111111111’,
‘payment_details[type]’: ‘credit_card’,
‘payment_details[verification_value]’: ‘123’,
‘payment_details[year]’: ‘2025’
});

var post_options = {
host: ‘komoju.com’,
port: ‘443’,
path: ‘/api/v1/payments’,
method: ‘POST’,
headers: {
‘Authorization’: auth,
‘Content-Length’: Buffer.byteLength(post_data)
}
};

var post_req = https.request(post_options, function(res) {
res.setEncoding(‘utf8′);
res.on(‘data’, function (chunk) {
console.log(chunk);
});
});

post_req.write(post_data);
post_req.end();

1
2
3
4
5
6
7
8
9
10

$komojuApi = new KomojuApi(your_secret_key’);
$result = $komojuApi->paymentMethods();
$result = $komojuApi->createSession([
‘return_url’ => ‘https://4adc69a3e120.ngrok.io/session_return’,
‘default_locale’ => ‘ja’,
‘payment_types’ => [‘konbini’],
‘payment_data’ => [
‘amount’ => ‘2100’,
‘currency’ => ‘JPY’,
‘external_order_num’ => ‘17053718380589-cd525b9489b09b4e’,
],
]);

1
2
3
4
5
6
7
8
9
10

client = Komoju.connect(“api-secret-key”)
client.payments.show
(“55404024b7b0dd6ec490158925”)
payment_details = {
    type: “konbini”,
    store: “lawson”,
    email: “user@example.com”,
    phone: “08011111111”
}
client.payments.create(amount: 100,
    currency: “JPY”,
    external_order_num: “123”,
    payment_details: payment_details)
   

1
2
3
4
5
6
7
8
9
10

var querystring = require(‘querystring’);
var https = require(‘https’);
var secret_key = ‘sk_123456’
var auth = ‘Basic ‘ + Buffer.from(secret_key + ‘:’).toString(‘base64’);
var post_data = querystring.stringify({
‘amount’: ‘1000’,
‘currency’: ‘JPY’,
‘external_order_num’: ‘123’,
‘metadata[foobar]’: ‘hoge’,
‘payment_details[email]’: ‘test@example.com’,
‘payment_details[month]’: ’01’,
‘payment_details[name]’: ‘Taro Yamada’,
‘payment_details[number]’: ‘4111111111111111’,
‘payment_details[type]’: ‘credit_card’,
‘payment_details[verification_value]’: ‘123’,
‘payment_details[year]’: ‘2025’
});

var post_options = {
host: ‘komoju.com’,
port: ‘443’,
path: ‘/api/v1/payments’,
method: ‘POST’,
headers: {
‘Authorization’: auth,
‘Content-Length’: Buffer.byteLength(post_data)
}
};

var post_req = https.request(post_options, function(res) {
res.setEncoding(‘utf8′);
res.on(‘data’, function (chunk) {
console.log(chunk);
});
});

post_req.write(post_data);
post_req.end();

1
2
3
4
5
6
7
8
9
10

$komojuApi = new KomojuApi(your_secret_key’);
$result = $komojuApi->paymentMethods();
$result = $komojuApi->createSession([
‘return_url’ => ‘https://4adc69a3e120.ngrok.io/session_return’,
‘default_locale’ => ‘ja’,
‘payment_types’ => [‘konbini’],
‘payment_data’ => [
‘amount’ => ‘2100’,
‘currency’ => ‘JPY’,
‘external_order_num’ => ‘17053718380589-cd525b9489b09b4e’,
],
]);

KOMOJU
で始めよう

KOMOJU の加盟店になるのに面倒な手続きは要りません。あなたのサイトでもすぐにご利用いただけます。

月額費用なし。利用分だけのご請求です。

Payment methods

All Payment Methods

日本の主要な決済方法を全て提供しています

韓国の主要な決済方法を全て提供しています

中国の3つの主要な決済方法を提供しています

ヨロッパーの主要な決済方法を提供しています