ドキュメント / BlockIQ™ /
BlockIQ™
オファーマッチング、組み込みチェックアウト統合、プライバシー保護決済による収益帰属のためのマーケットプレイス API。
埋め込みオファーマッチング
プロバイダーは、BlockIQ™ マッチング エンジンを通じて金融オファーを作成し、配布します。プライバシー保護アルゴリズムにより、個人データを公開することなく、消費者を関連するオファーに結び付けることができます。
プライバシー保護の和解
ゼロ知識証明による階層型台帳アーキテクチャでのトランザクション実行。プロバイダーエコシステム全体にわたる自動収益分配による決済のファイナリティ。
プロバイダー マーケットプレイス API
オファーを作成、管理、配布するための完全な API スイート。パートナー、プロバイダー、およびユーザー層での MSA ライセンス付きアクセス。サンドボックス環境と実稼働環境。
収益帰属
成功したトランザクションの自動追跡と帰属。プロバイダーは、成功した結果に対してのみ料金を支払います。従来のプルごとの価格設定よりも 286 倍安くなります。
APIリファレンス /
POST
/v1/blockiq/offersCreate a new financial offer
リクエスト
{
"name": "Low APR Credit Card",
"type": "credit_card",
"eligibility_criteria": {
"min_score": 700,
"max_debt_to_income": 0.36
},
"terms": {
"apr": 12.99,
"credit_limit_min": 5000,
"credit_limit_max": 50000
},
"match_priority": "high",
"active": true
}応答
{
"offer_id": "off_abc123",
"status": "active",
"created_at": "2024-01-15T10:30:00Z",
"url": "https://api.freshcredit.com/v1/blockiq/offers/off_abc123"
}POST
/v1/blockiq/matchFind matching offers for a user
リクエスト
{
"user_id": "user_123",
"offer_types": ["credit_card", "personal_loan"],
"max_results": 5
}応答
{
"matches": [
{
"offer_id": "off_abc123",
"name": "Low APR Credit Card",
"provider": "FreshCredit Bank",
"match_score": 0.94,
"terms": {
"apr": 12.99,
"estimated_credit_limit": 15000
}
}
],
"match_id": "mch_xyz789",
"expires_at": "2024-01-15T11:30:00Z"
}POST
/v1/blockiq/transactionsRecord a transaction for settlement and attribution
リクエスト
{
"match_id": "mch_xyz789",
"offer_id": "off_abc123",
"user_id": "user_123",
"amount": 15000,
"currency": "USD",
"type": "origination"
}応答
{
"transaction_id": "txn_def456",
"status": "pending_settlement",
"settlement_rail": "circle_usdc",
"estimated_settlement": "2024-01-15T11:00:00Z"
}決済レール /< 5 minutes< 30 minutes2-3 business days1-3 business daysSame day
circle_usdcCircle USDC stablecoin settlementcoinbaseCoinbase fiat-to-crypto railsstripeStripe fiat payment processingachTraditional ACH bank transferwireSame-day wire transferオファータイプ /
credit_cardCredit card offers with customizable termspersonal_loanUnsecured personal loansauto_loanVehicle financing offersmortgageHome mortgage and refinancestudent_loanStudent loan and refinancingbnplBuy now, pay later installment offersWebhookイベント /
blockiq.match.completedSent when offer matching is completed for a userblockiq.transaction.completedSent when a transaction settles successfullyblockiq.offer.claimedSent when a user claims an offer