Offloader Wallets API now available  View changelog

Release Notes

Learn about the latest updates and changes to the SpherePay API.

March 03, 2026

Introducing the Offloader Wallets API

NewOff-rampWallets

Offloader Wallets are automated crypto-to-fiat conversion wallets that let your customers receive stablecoins and have them automatically settled to a linked bank account.

Supported stablecoins and networks:

  • USDC on Arbitrum, Avalanche, Base, Ethereum, Polygon, and Solana
  • USDT on Ethereum and Tron
  • EURC on Base, Ethereum, and Solana

Supported fiat destinations:

  • USD via ACH and Wire
  • EUR via SEPA

For full details, see the Offloader Wallets guide and Supported Rails & Currencies.

EURC Now Supported

NewOn-rampOff-ramp

EURC is now available across SpherePay's on-ramp and off-ramp products on Base, Ethereum, and Solana networks.

For full details, see Supported Rails & Currencies.


January 13, 2026

Customer API Suite for Business Customers

NewCustomersKYB

Full API support for onboarding and verifying business customers, including UBO registration — giving you complete control over the onboarding UX without redirecting customers to an external flow.

New endpoints available:

For full details, see the KYB via API guide and Create Customer endpoint.


January 07, 2026

Deprecating the Transfer Fee API

DeprecatedTransfers

Action required by January 14, 2026

The /v1/transfer/fee endpoint will be removed on January 14, 2026. Migrate before this date to avoid disruption.

Transfer fees are now declared directly in the transfer request body. The standalone fee endpoint is no longer needed and will be retired.


December 01, 2025

Customer API Suite for Individual Customers

NewCustomersKYC

Full API support for onboarding and verifying individual customers — enabling end-to-end KYC flows inside your own product without redirecting customers to an external page.

New endpoints available:

The Create Customer endpoint now accepts the following fields for API-based KYC:

  • personalInformation.taxIdentificationNumber
  • personalInformation.taxIdentificationNumberType
  • personalInformation.taxIdentificationNumberCountry
  • personalInformation.taxIdentificationNumberDescription

For full details, see the KYC via API guide. If you want a faster integration path, see KYC via Link.


August 21, 2025

Introducing the Onramper Accounts API

NewOn-rampOnramper

Onramper Accounts generate dedicated bank accounts that automatically convert incoming fiat deposits into stablecoins and deliver them on-chain — no manual intervention required.

  • Generate dedicated bank accounts per customer or application
  • Automatically convert USD/EUR deposits into USDC or USDT
  • Deliver converted funds directly to any on-chain wallet address

For full details, see the Onramper Accounts guide and Virtual Account API reference.


June 18, 2025

Starknet Network Support

NewTransfers

Starknet is now supported for USDC onRamp and offRamp transfers. Use "network": "starknet" in the source or destination of your transfer request.

offRamp via Starknet
{
    "customer": "customer_098xxxxxxxxxxxxxxxxxxxxxxxxxxxfbb",
    "amount": "1.12",
    "source": {
        "id": "wallet_81bxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx9f3",
        "network": "starknet",
        "currency": "usdc"
    },
    "destination": {
        "id": "bankAccount_cabxxxxxxxxxxxxxxxxxxxxcxxxxx42c",
        "network": "achSameDay",
        "currency": "usd"
    }
}
onRamp via Starknet
{
    "customer": "customer_098xxxxxxxxxxxxxxxxxxxxxxxxxxxfbb",
    "amount": "2",
    "source": {
        "id": "bankAccount_cabxxxxxxxxxxxxxxxxxxxxcxxxxx42c",
        "network": "wire",
        "currency": "usd"
    },
    "destination": {
        "id": "wallet_81bxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx9f3",
        "network": "starknet",
        "currency": "usdc"
    }
}

June 03, 2025

Deprecating the /v1/customer Endpoint

DeprecatedCustomers

Action required by June 6, 2025

The /v1/customer endpoint will be deprecated on June 6, 2025. Migrate to /v2/customer before this date.

/v2/customer is the new standard for creating and managing customers and will continue to receive new features. See the Customer API reference for migration details.