---
title: "Offer"
url: "https://docs.wayflyer.com/apis/embedded-finance-1-0-0/versions/7d0182a3-23d8-43cc-b636-dac7e1594f96/schemas/Offer"
---

> Full API specification: https://docs.wayflyer.com/apis/embedded-finance-1-0-0/versions/7d0182a3-23d8-43cc-b636-dac7e1594f96.md

# Offer

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance
  version: "1"
servers:
  - url: https://api.wayflyer.com/financing/
    description: Production
components:
  schemas:
    SupportedCurrencyCode:
      enum:
        - USD
        - CAD
        - AUD
        - EUR
        - GBP
        - SEK
        - DKK
      title: SupportedCurrencyCode
      type: string
    Offer:
      properties:
        amount:
          description: Amount of the offer in `currency`
          title: Amount
          type: integer
        currency:
          $ref: "#/components/schemas/SupportedCurrencyCode"
          description: ISO 4217 code for the currency of the offer
      required:
        - amount
        - currency
      title: Offer
      type: object
```
