Skip to main content
GET
/
liquidity-providers
/
{provider_name}
/
exchange-rate
Get Exchange Rate
curl --request GET \
  --url https://api-sandbox.stablesea.com/v1/liquidity-providers/{provider_name}/exchange-rate \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "payin_currency": "USDC",
    "payout_currency": "COP",
    "exchange_rate": "3921.8"
  }
}
Get the current exchange rate for a specific liquidity provider. This endpoint is useful for displaying real-time rates to end users.

Common Headers

HeaderValueRequiredDescription
AuthorizationBearer <api-key>trueYour API key for authentication
Content-Typeapplication/jsontrueContent type of the request

Path

provider_name
string
required
Name of the liquidity provider (e.g., “ALPHA”)
Exchange rates are indicative and may change frequently. Use this endpoint for display purposes only. Actual rates are locked in when creating quotes through the quote endpoint.

Authorizations

Authorization
string
header
default:DEFAULT-TOKEN-HERE
required

Use your API key as the bearer token

Path Parameters

provider_name
string
required

Name of the liquidity provider

Example:

"ALPHA"

Response

200 - application/json

Exchange rate response

data
object