OpenSylo Marketplace API
  1. Data Ingestion
OpenSylo Marketplace API
  • Introduction
  • Getting Started
  • OAuth 2.0 Flow
  • Webhook Integration
  • Sandbox Testing
  • Error Reference
  • Marketplace Dashboard
    • Login to the marketplace dashboard
      POST
    • View OAuth credentials
      GET
    • Regenerate client secret
      POST
  • OAuth 2.0
    • Start OAuth authorization
      GET
    • Exchange code or refresh token
      POST
    • Revoke a token
      POST
    • OAuth discovery / client metadata
      GET
  • Data Ingestion
    • Submit single merchant data
      POST
    • Submit bulk merchant data
      POST
    • Get merchant credit score
      GET
    • Integration health check
      GET
  • Loan API
    • Get active loans for a merchant
      GET
    • Get loan status
      GET
    • Validate deduction amounts
      POST
    • Bulk loan status check
      POST
  • Inbound Webhooks
    • Send repayment webhook
      POST
    • Send settlement webhook
      POST
  • Sandbox
    • Sandbox environment info
      GET
    • Get sandbox test credentials
      GET
    • Get sandbox test merchants
      GET
  • Schemas
    • DashboardLoginRequest
    • DashboardLoginResponse
    • CredentialsResponse
    • RegenerateSecretResponse
    • TokenRequest
    • TokenResponse
    • RevokeRequest
    • ClientMetadataResponse
    • MerchantIdentity
    • SalesPerformance
    • RevenueConsistency
    • FulfillmentMetrics
    • PayoutCashFlow
    • PlatformDependency
    • HistoricalCredit
    • BehavioralRisk
    • MerchantDataRequest
    • ScoreBreakdown
    • CreditScore
    • MerchantDataResponse
    • BulkMerchantDataRequest
    • BulkMerchantDataResponse
    • CreditScoreResponse
    • HealthResponse
    • ActiveLoansResponse
    • LoanStatusResponse
    • ValidateDeductionsRequest
    • ValidateDeductionsResponse
    • BulkLoanStatusRequest
    • BulkLoanStatusResponse
    • RepaymentWebhookRequest
    • SettlementWebhookRequest
    • WebhookAckResponse
    • SandboxInfoResponse
    • SandboxCredentialsResponse
    • SandboxMerchantsResponse
    • OAuthError
    • ApiError
  1. Data Ingestion

Get merchant credit score

GET
/marketplace/data/merchant/{merchantId}/credit-score
Retrieve the most recent credit score for a merchant. You can only access scores for merchants who have granted consent to your marketplace.
Required scope: credit.score.read

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Credit score retrieved
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.opensylo.com/marketplace/data/merchant/merchant_uuid/credit-score' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "totalScore": 78,
    "riskTier": "B",
    "maxLendingCap": 930000,
    "eligiblePercentage": 30,
    "scoreBreakdown": {
        "salesPerformance": 28,
        "revenueConsistency": 13,
        "fulfillmentOps": 14,
        "payoutCashFlow": 15,
        "stabilityTenure": 8,
        "riskBehavior": 0
    },
    "lendingImplication": "Standard cap",
    "calculatedAt": "2026-01-29T08:15:30.000Z",
    "riskFlags": [],
    "recommendations": "Good credit profile. Standard lending terms apply."
}
Modified at 2026-01-29 23:19:05
Previous
Submit bulk merchant data
Next
Integration health check
Built with