Scorecard Generate Retrieve

get

This endpoint will return the scorecard for a business. If the scorecard exists it will retrieve it, if it doesn't it will make one.

Authorizations
AuthorizationstringRequired
Path parameters
merchant_idanyRequired
Header parameters
LenderIdstringRequired

Lender ID provided by Verdata

Responses
200

Seller Scorecard Result

application/json
get
/scorecard/{merchant_id}
GET /external/api/v1/scorecard/{merchant_id} HTTP/1.1
Host: api.myverdata.com
Authorization: YOUR_API_KEY
LenderId: text
Accept: */*
200

Seller Scorecard Result

{
  "merchant_id": "123e4567-e89b-12d3-a456-426614174000",
  "scorecard_score": {
    "score": "-9999",
    "total": "-9999"
  },
  "scorecard": [
    {
      "rule_id": "123e4567-e89b-12d3-a456-426614174000",
      "rule_description": "text",
      "result": "text",
      "fail_score": 1,
      "pass_score": 1,
      "value": "text",
      "notes": "text",
      "updated_at": "2025-12-06T04:07:51.966Z",
      "target": "text"
    }
  ]
}

Last updated