# SwapQuoteFees

Fee breakdown included in the quote.

**swap** <!-- -->objectrequired

Swap service fee (charged in source token).

**amount**decimalrequired

Decimal format of the amount, e.g. `1.5`.

**rawAmount**bigintrequired

Raw base units as string, e.g. `1500000000000000000`.

**Possible values:** Value must match regular expression `^[+-]?\d+$`

**Example:<!-- -->&#x20;**`1500000000000000000`

**decimals**integerrequired

Token decimals, e.g. `18`.

**symbol**stringrequired

Token ticker, e.g. `STRK`.

**chain**stringrequired

Chain identifier, e.g. `STARKNET`, `BITCOIN`, `LIGHTNING`.

**networkOutput** <!-- -->object

Swap fee to cover the transaction network fees on the destination side (charged in source token).

**amount**decimalrequired

Decimal format of the amount, e.g. `1.5`.

**rawAmount**bigintrequired

Raw base units as string, e.g. `1500000000000000000`.

**Possible values:** Value must match regular expression `^[+-]?\d+$`

**Example:<!-- -->&#x20;**`1500000000000000000`

**decimals**integerrequired

Token decimals, e.g. `18`.

**symbol**stringrequired

Token ticker, e.g. `STRK`.

**chain**stringrequired

Chain identifier, e.g. `STARKNET`, `BITCOIN`, `LIGHTNING`.

SwapQuoteFees

```
{

  "swap": {

    "amount": "string",

    "rawAmount": "1500000000000000000",

    "decimals": 0,

    "symbol": "string",

    "chain": "string"

  },

  "networkOutput": {

    "amount": "string",

    "rawAmount": "1500000000000000000",

    "decimals": 0,

    "symbol": "string",

    "chain": "string"

  }

}
```
