Skip to main content
GET
/
organizations
/
{organization_id}
/
configured-routes
List configured routes
curl --request GET \
  --url https://api-sandbox.stablesea.com/v1/organizations/{organization_id}/configured-routes \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "order_type": "<string>",
      "payin_currency": "<string>",
      "payout_currency": "<string>",
      "liquidity_provider": "<string>",
      "is_disabled": true,
      "estimated_settlement_time": "<string>",
      "payin_limits": {
        "min": "<string>",
        "max": "<string>"
      },
      "indicative_cost_tiers": [
        {
          "min": "<string>",
          "max": "<string>",
          "bps": "<string>"
        }
      ],
      "trading_hours": [
        {
          "day_of_week": 123,
          "start_time": "<string>",
          "end_time": "<string>",
          "timezone": "America/New_York"
        }
      ],
      "has_trading_hours_configured": true,
      "is_within_trading_hours": true,
      "inclusive_account_types": [
        "<string>"
      ]
    }
  ]
}
Returns configured routes for the organization: the template for each product (currencies, limits, indicative cost tiers, trading hours, and optional inclusive money-account types). This is separate from POST /v1/organizations/{organization_id}/offerings, which builds tradable offerings after matching money accounts and other checks. Use this endpoint to see exact payin_currency and payout_currency pairs enabled for your org—for example, to confirm whether a route requires USDC vs USD bank.

Common Headers

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

Path

organization_id
string
required
ID of organization

Notes

  • inclusive_account_types: When this array is empty, there is no extra type filter beyond org-level enabled money-account types (only types your org may use). When non-empty, the route only applies to those account types (e.g. specific bank or wallet methods).
  • has_trading_hours_configured: If false, no trading windows are stored for the route; is_within_trading_hours will be false until hours are configured in Ops.
  • is_within_trading_hours: Whether now falls inside a configured window for the current weekday in each row’s timezone.

Authorizations

Authorization
string
header
default:DEFAULT-TOKEN-HERE
required

Use your API key as the bearer token

Path Parameters

organization_id
string
required

ID of organization

Example:

"org_01k2cm4r59e5z8k5ggrbbxjcwy"

Response

200 - application/json

Configured routes for the organization

data
object[]