From 9df5cf6a1d2418b27c813e1b927611dc62114a30 Mon Sep 17 00:00:00 2001 From: Jeremy Klein Date: Fri, 27 Feb 2026 00:01:53 -0800 Subject: [PATCH] Add cryptoNetwork to realtimeFunding source object. --- mintlify/openapi.yaml | 4 ++++ openapi.yaml | 4 ++++ .../schemas/quotes/RealtimeFundingQuoteSource.yaml | 8 ++++++++ 3 files changed, 16 insertions(+) diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index a28b2e17..36278482 100644 --- a/mintlify/openapi.yaml +++ b/mintlify/openapi.yaml @@ -7921,6 +7921,10 @@ components: type: string description: Currency code for the funding source. See [Supported Currencies](https://grid.lightspark.com/platform-overview/core-concepts/currencies-and-rails) for the full list of supported fiat and crypto currencies. example: USD + cryptoNetwork: + type: string + description: 'The crypto network to use for the funding source. Required when currency is a stablecoin (e.g. USDC, USDT). Specifies which network the customer will deposit on, so the correct deposit address can be generated. Example values: SOLANA_MAINNET, SOLANA_DEVNET, ETHEREUM_MAINNET. Note that sandbox platforms cannot use MAINNET networks.' + example: SOLANA_MAINNET description: Fund the quote using a real-time funding source (RTP, SEPA Instant, Spark, Stables, etc.). This will require manual just-in-time funding using `paymentInstructions` in the response. Because quotes expire quickly, this option is only valid for instant payment methods. Do not try to fund a quote with a non-instant payment method (ACH, etc.). QuoteSourceOneOf: oneOf: diff --git a/openapi.yaml b/openapi.yaml index a28b2e17..36278482 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -7921,6 +7921,10 @@ components: type: string description: Currency code for the funding source. See [Supported Currencies](https://grid.lightspark.com/platform-overview/core-concepts/currencies-and-rails) for the full list of supported fiat and crypto currencies. example: USD + cryptoNetwork: + type: string + description: 'The crypto network to use for the funding source. Required when currency is a stablecoin (e.g. USDC, USDT). Specifies which network the customer will deposit on, so the correct deposit address can be generated. Example values: SOLANA_MAINNET, SOLANA_DEVNET, ETHEREUM_MAINNET. Note that sandbox platforms cannot use MAINNET networks.' + example: SOLANA_MAINNET description: Fund the quote using a real-time funding source (RTP, SEPA Instant, Spark, Stables, etc.). This will require manual just-in-time funding using `paymentInstructions` in the response. Because quotes expire quickly, this option is only valid for instant payment methods. Do not try to fund a quote with a non-instant payment method (ACH, etc.). QuoteSourceOneOf: oneOf: diff --git a/openapi/components/schemas/quotes/RealtimeFundingQuoteSource.yaml b/openapi/components/schemas/quotes/RealtimeFundingQuoteSource.yaml index 4d5d7da7..5a26cef2 100644 --- a/openapi/components/schemas/quotes/RealtimeFundingQuoteSource.yaml +++ b/openapi/components/schemas/quotes/RealtimeFundingQuoteSource.yaml @@ -23,6 +23,14 @@ allOf: [Supported Currencies](https://grid.lightspark.com/platform-overview/core-concepts/currencies-and-rails) for the full list of supported fiat and crypto currencies. example: USD + cryptoNetwork: + type: string + description: >- + The crypto network to use for the funding source. Required when currency is a stablecoin (e.g. USDC, USDT). + Specifies which network the customer will deposit on, so the correct deposit address can be generated. + Example values: SOLANA_MAINNET, SOLANA_DEVNET, ETHEREUM_MAINNET. Note that sandbox platforms cannot use + MAINNET networks. + example: SOLANA_MAINNET description: >- Fund the quote using a real-time funding source (RTP, SEPA Instant, Spark, Stables, etc.). This will require manual just-in-time funding using `paymentInstructions` in the response.