OpenSylo Marketplace API
  1. Loan API
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. Loan API

Bulk loan status check

POST
/api/v1/marketplace/loans/bulk-status
Check the status of multiple loans in a single request.
Required scope: repayment.report

Request

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

Examples

Responses

🟢200
application/json
Bulk loan statuses retrieved
Body

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.opensylo.com/api/v1/marketplace/loans/bulk-status' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "loan_ids": [
        "loan_uuid_1",
        "loan_uuid_2",
        "loan_uuid_3"
    ]
}'
Response Response Example
200 - Success
{
    "loans": [
        {
            "loan_id": "loan_uuid_1",
            "reference": "LOAN-2026-001",
            "status": "DISBURSED",
            "deduction_required": true,
            "outstanding": 325000
        },
        {
            "loan_id": "loan_uuid_2",
            "reference": "LOAN-2026-002",
            "status": "REPAID",
            "deduction_required": false,
            "outstanding": 0
        },
        {
            "loan_id": "loan_uuid_3",
            "status": "not_found",
            "deduction_required": false,
            "outstanding": 0,
            "error": "Loan not found or does not belong to this marketplace"
        }
    ],
    "summary": {
        "total_queried": 3,
        "active": 1,
        "repaid": 1,
        "not_found": 1
    },
    "timestamp": "2026-01-29T12:00:00.000Z"
}
Modified at 2026-01-29 23:19:05
Previous
Validate deduction amounts
Next
Send repayment webhook
Built with