Skip to main content
January 29, 2026

Change to loan types

We have deprecated several loan types to simplify our API and align naming conventions. Deprecated types are automatically migrated to their replacements. All new loans will be created with the new statuses going forward and old types will be removed from the API and documentation following the migration.
Deprecated typeNew type
agency-lending-parent-loanagency-inventory
agency-lending-collateralised-child-loanagency-title-transfer-collateralised-loan
agency-lending-pledge-collateralised-child-loanagency-pledge-collateralised-loan
agency-lending-uncollateralised-child-loanagency-uncollateralised-loan
agency-lending-first-lien-child-loanagency-clearloop-loan
bilateral-lending-title-transfer-collateralised-loanbilateral-title-transfer-collateralised-loan
bilateral-lending-pledge-collateralised-loanbilateral-pledge-collateralised-loan
bilateral-lending-uncollateralised-loanbilateral-uncollateralised-loan
For a full list of loan types, see LoanType.

Margin call timer for collateralised loans

New marginCallExpiryPeriod field and marginCall object have been added to the Lending API.
  • The loan booking form now accepts a margin call period (in hours), which is specified in the new field marginCallExpiryPeriod, for example, in Get Loans response. The margin call expiry period can be between 1 and 24 hours. It applies only to collateralised loans. It does not apply to ClearLoop loans.
  • When a loan goes into Margin Call, the marginCall object contains the margin call associated with the loan, for example, in Get Loans response.
January 28, 2026

A new settlementStatus field in responses that return ClearLoop portfolios

A new settlementStatus field now appears in responses that return ClearLoop portfolios, for example, in Get ClearLoop Portfolios. The field contains the status of the last settlement cycle.This change has been introduced as part of platform improvements.For information about settlement status values, see PortfolioSettlementStatus.
January 5, 2026

Early termination of ClearLoop loans

A new endpoint, `PATCH /platform/organizations/{organizationId}/loans/{earlyTerminationLoanId} has been created, that allows Copper’s financing desk (Agency Desk) to immediately recall outstanding loans where there has been a breach of loan terms.
Early termination of a loan can only be initiated by an Agency Desk: A specialized organisational entity that acts as an intermediary between lenders and borrowers. The agency desk is set up and managed by administrators and has the organization subtype AGENCY_DESK.
New LoanStatus statuses of the type enum have been introduced as part of the early termination flow:
  • early-termination-in-progress - The loan is in the process of being terminated early.
  • early-termination-completed - Early termination of the loan has been completed.
November 13, 2025

New transaction types for accepting or rejecting deposits on-chain

New BlockchainTransactionType types accept-deposit and reject-deposit have been introduced to support on-chain deposit acceptance on the Canton Network.
November 5, 2025

ClearLoop documentation update

Updated ClearLoop OpenAPI documentation, clarified parameter descriptions.
October 15, 2025

API key rate limits improvements

Previously, API key rate limits were enforced per user, aggregating requests across all organisations and API keys for that user. This could cause someone with multiple API keys in different organisations to be rate limited globally if one key exceeds the limit, even if other keys are within limits.Now, the API key rate limits are enforced per user and per organisation. This prevents excessive usage in one organisation from impacting API keys in another organisation for the same user.This change also enables a more granular rate limit monitoring at the organisation level for both admins and clients.