Quickstart
Generate an access token with your API key credentials and make your first request.
Modular API Reference
Explore Modular API endpoints, request parameters, responses, and authentication requirements.
Authentication
All Modular API interactions are scoped to API key credentials: aclient_id and client_secret. An API key represents your integration and acts as the root container for tenants, webhooks, and processing workflows.
To authenticate requests, exchange your API key credentials with Generate Access Token using HTTP Basic Authentication (see the Authentication guide). Then include the one-hour token in the request headers when calling protected endpoints.
Base URLs
Choose the base URL for your environment:- Production
- Sandbox
https://api.skortorent.com/api/v1Webhooks
Webhooks allow SKOR to notify your system about important events asynchronously. Webhooks are configured per API key and deliver event notifications for all tenants associated with that key. These events help your system react when specific processes are completed. When you create a webhook, you can provide an optional signingsecret for that URL. SKOR keeps this value server-side and uses the Svix signing scheme to sign the exact JSON request body. The secret itself is never sent in a webhook request.
Create webhook request
null or an empty string to remove it. List Webhooks and Get Webhook return the configured secret, so treat those API responses as sensitive.
For a webhook with a configured secret, each request includes these headers:
Verify a webhook signature with Svix
Express verification endpoint
POST /webhook-test for delivery testing. Set SKOR_WEBHOOK_TEST_SECRET to the same secret configured for that test webhook before using the endpoint.
- Tenant lifecycle events —
TENANT_CREATED,TENANT_UPDATED,TENANT_DELETED,TENANT_ONBOARDING_COMPLETED - Document analysis completion —
DOCUMENT_ANALYSIS_DATA - Cl@ve processing success —
CLAVE_SUCCESS - KYC verification result —
KYC_VERIFICATION_DATA - Forensic analysis completion —
FORENSIC_ANALYSIS_DATA - Financial analysis result —
FINANCIAL_ANALYSIS_SUCCESS,FINANCIAL_ANALYSIS_FAILURE
POST with a JSON body of the form { "event": <EVENT_NAME>, "data": <payload> }.
Register an endpoint with Create Webhook.
Tenant management
Tenants are entities that you manage through the Modular API. Each tenant is associated with a specific API key. Once a tenant is created, you can manage subsequent actions such as document uploads, identity verification, banking connections, and forensic analysis. Create a tenant with Create Tenant. You can also Get Tenant, Get All Tenants, Update Tenant, and Delete Tenant.Document upload and download
Documents can be uploaded for a tenant at any point after creation. Examples include payslips, bank statements, tax returns, and identity documents. Uploaded documents are stored in the SKOR database and can be retrieved later when required.- Upload documents for a tenant using the Documents API.
- Trigger document analysis automatically after successful upload.
- Receive webhook events when document analysis is completed.
- Download documents retrieved from Cl@ve.
Identity verification
KYC verifies the tenant’s identity using official identity documents. See Initiate KYC.Financial scoring
Banking data is analyzed and used in financial assessments. See Initiate Bank.Forensic analysis
Forensic analysis evaluates all available tenant data to detect inconsistencies, fraud indicators, and financial risk signals.You do not need to manually trigger forensic analysis in most cases.
End-to-end flow
1
Generate an access token
Generate an access token with Generate Access Token using your API key credentials via HTTP Basic Authentication. Use this token to authenticate all subsequent API requests.
2
Configure webhooks
Configure webhooks to receive asynchronous notifications for document analysis, Cl@ve events, KYC completion, forensic analysis, and financial analysis. Webhooks are optional, but strongly recommended for long-running processes.
3
Create tenants under the API key
Create a tenant by providing their basic personal details. The endpoint documentation lists all required fields. Identification number and postcode are used to run Experian checks for defaulter and risk status.
4
Upload documents or retrieve them from Cl@ve
Upload tenant documents manually, retrieve them through Cl@ve, or use both methods. Document submission is mandatory and acts as a blocking dependency for forensic analysis.
5
Initiate KYC verification
Complete identity verification for the tenant. KYC verification is mandatory, and forensic analysis will not be triggered unless KYC has completed successfully.
6
Connect the tenant's bank
Connect the tenant’s bank account. This step is optional, but recommended because bank connectivity is required for Financial SKOR generation.
7
Consume results through APIs and webhooks
Retrieve tenant operational data through APIs and consume asynchronous events delivered through webhooks.