Retrieve an individual entity's credit score
Returns an entity's VantageScore 3.0 credit score (300 to 850).
⚠️ Caution: This endpoint is only accessible to entities that have the
⚠️ Caution: This endpoint is only accessible to entities that have the
data:retrieve
capability in capabilities
.Parameters
No parameters
Returns
Returns an entity's VantageScore 3.0 credit score (300 to 850).
- cURL
- Node.js
- Python
GET
/entities/:entity_id/credit_score
curl https://production.methodfi.com/entities/ent_au22b1fbFJbp8/credit_score \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
GET
/entities/:entity_id/credit_score
const entity = await method.entities.getCreditScore('ent_au22b1fbFJbp8');
GET
/entities/:entity_id/credit_score
entity = method.entities.get_credit_score('ent_au22b1fbFJbp8')
RESPONSE
{
"score": 806,
"updated_at": "2022-10-10"
}