> For the complete documentation index, see [llms.txt](https://docs.skylinebridge.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skylinebridge.tech/web-api/settings.md).

# Settings

## Get bridge settings

> Returns the participating chains with their specific settings, global bridge configuration (such as minimum and maximum allowed bridging amounts), and, for each source chain, the native token that will be received on the destination chain.

```json
{"openapi":"3.0.0","info":{"title":"Web API","version":"1.0"},"paths":{"/settings":{"get":{"operationId":"SettingsController_get","summary":"Get bridge settings","description":"Returns the participating chains with their specific settings, global bridge configuration (such as minimum and maximum allowed bridging amounts), and, for each source chain, the native token that will be received on the destination chain.","parameters":[],"responses":{"200":{"description":"OK - Returns the configuration settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SettingsResponseDto"}}}}},"tags":["Settings"]}}},"components":{"schemas":{"SettingsResponseDto":{"type":"object","properties":{"runMode":{"type":"string","description":"Specifies the current operating mode of the application"},"cardanoChainsNativeTokens":{"type":"object","description":"For each source chain, defines the native token that will be received on the destination chain","additionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/NativeTokenDto"}}},"bridgingSettings":{"description":"Settings for bridge","allOf":[{"$ref":"#/components/schemas/BridgingSettingsDto"}]},"enabledChains":{"description":"Participating chains in the bridge","type":"array","items":{"type":"string"}}},"required":["runMode","cardanoChainsNativeTokens","bridgingSettings","enabledChains"]},"NativeTokenDto":{"type":"object","properties":{"dstChainID":{"type":"string","description":"Destination chain ID"},"tokenName":{"type":"string","description":"Native token name"}},"required":["dstChainID","tokenName"]},"BridgingSettingsDto":{"type":"object","properties":{"minChainFeeForBridging":{"type":"object","description":"For each chain, the minimum fee required to cover the submission of the transaction on the destination chain","additionalProperties":{"type":"number"}},"minOperationFee":{"type":"object","description":"For each chain, the minimum fee required to cover operational costs","additionalProperties":{"type":"number"}},"minUtxoChainValue":{"type":"object","description":"For each chain, the minimum allowed UTXO value","additionalProperties":{"type":"number"}},"minValueToBridge":{"type":"number","description":"Minimum value allowed to be bridged"},"maxAmountAllowedToBridge":{"type":"string","description":"Maximum amount of currency allowed to be bridged"},"maxTokenAmountAllowedToBridge":{"type":"string","description":"Maximum amount of native tokens allowed to be bridged"},"maxReceiversPerBridgingRequest":{"type":"number","description":"Maximum number of receivers allowed in a bridging request"}},"required":["minChainFeeForBridging","minOperationFee","minUtxoChainValue","minValueToBridge","maxAmountAllowedToBridge","maxTokenAmountAllowedToBridge","maxReceiversPerBridgingRequest"]}}}}
```
