# TradeResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    TradeResponse:
      properties:
        trade_id:
          type: string
          format: uuid
        fee:
          $ref: '#/components/schemas/MoneyResponse'
        fee_percentage:
          type: string
        rate:
          type: string
        rate_with_fee:
          type: string
        to_eur_rate:
          type: string
      x-apidog-orders:
        - trade_id
        - fee
        - fee_percentage
        - rate
        - rate_with_fee
        - to_eur_rate
      type: object
      x-apidog-folder: ''
    MoneyResponse:
      properties:
        value:
          type: string
        asset_id:
          type: string
          format: uuid
        currency_id:
          type: string
          format: uuid
      x-apidog-orders:
        - value
        - asset_id
        - currency_id
      type: object
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```