ドキュメント / BlockScore™ /
ブロックスコア™
代替データ パイプライン、プロバイダー定義のスコアリング モデル、および言語を超えた AI エージェント構成を備えた信用スコアリング API。
プロバイダーが構築したモデル
プロバイダーは独自の信用リスク モデルを構築し、所有します。 FreshCredit® はインフラストラクチャ、API、代替データ パイプラインを提供し、プロバイダーがスコアリング ロジックを制御します。
代替データ
従来の局データを超えてください。行動シグナル、リアルタイムの財務パターン、取引履歴、検証済みの資格情報を組み込んで、予測上昇率を 25% 高めます。
クロスリンガルAI
金融 AI エージェントは、グローバルな信用判断のために 2,400 以上の言語をサポートしています。翻訳を失わずに複数の言語でデータを処理します。
アルゴリズムの透明性
オープンな方法論と監査可能なモデル出力。 The FreshCredit® Org の調査基準により、透明性、公平性、準拠性のあるスコアリングが保証されます。
APIリファレンス /
POST
/v1/blockscore/scoreGenerate a credit score using a specific model
リクエスト
{
"user_id": "user_123",
"model_id": "model_custom_456",
"data_sources": ["blockid", "transactions", "alternative"],
"callback_url": "https://your-app.com/webhooks/blockscore"
}応答
{
"score_id": "scr_xyz789",
"score": 742,
"rating": "good",
"model_id": "model_custom_456",
"factors": [
{ "name": "payment_history", "impact": "high", "direction": "positive" },
{ "name": "credit_utilization", "impact": "medium", "direction": "positive" }
],
"generated_at": "2024-01-15T10:30:00Z"
}POST
/v1/blockscore/modelsCreate a custom credit scoring model
リクエスト
{
"name": "My Custom Model",
"description": "Model for thin-file consumers",
"base_model": "freshcredit_v3",
"features": [
{ "source": "blockid", "weight": 0.3 },
{ "source": "transactions", "weight": 0.4 },
{ "source": "alternative", "weight": 0.3 }
],
"custom_rules": [
{ "condition": "payment_history > 0.9", "adjustment": +20 }
]
}応答
{
"model_id": "model_custom_456",
"status": "training",
"estimated_completion": "2024-01-15T12:00:00Z"
}GET
/v1/blockscore/models/{model_id}Retrieve model details and performance metrics
応答
{
"model_id": "model_custom_456",
"name": "My Custom Model",
"status": "active",
"performance": {
"auc_roc": 0.87,
"precision": 0.82,
"recall": 0.79,
"predictive_lift": "25%"
},
"created_at": "2024-01-15T10:00:00Z"
}データソース /Identity verification status and credentialsUser-authorized transaction historyBehavioral signals and alternative dataVerified employment and income dataRental payment historyUtility and telecom payment history
blockidIdentitytransactionsFinancialalternativeAlternativeemploymentEmploymentrentalHousingutilitiesUtilitiesWebhookイベント /
blockscore.score.completedSent when a score generation is completedblockscore.model.trainedSent when a custom model finishes trainingblockscore.model.updatedSent when a model is updated or retrained