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

Sandbox environment info

GET
/sandbox/info
Returns sandbox environment details, limitations, rate limits, and documentation URL. No authentication required.

Request

None

Responses

🟢200
application/json
Sandbox info
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.opensylo.com/sandbox/info'
Response Response Example
{
    "enabled": true,
    "environment": "sandbox",
    "version": "1.0",
    "limitations": [
        "Sandbox data is reset daily at 2:00 AM UTC",
        "Sandbox tokens expire after 7 days",
        "No real financial transactions are processed",
        "Credit scores are simulated based on test merchant tier",
        "All sandbox credentials use plaintext secrets (documented publicly)",
        "Sandbox requests are isolated from production data"
    ],
    "documentationUrl": "https://api.opensylo.com/api-docs",
    "rateLimits": {
        "requestsPerMinute": 120,
        "requestsPerHour": 3600
    },
    "tokenExpiryDays": 7
}
Modified at 2026-01-29 23:19:05
Previous
Send settlement webhook
Next
Get sandbox test credentials
Built with