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

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

# HostedApplicationCompanyData

## 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
    SupportedCountryCode:
      enum:
        - US
        - CA
        - GB
        - IE
        - BE
        - NL
        - ES
        - DE
        - SE
        - DK
        - AU
      title: SupportedCountryCode
      type: string
    USStateCode:
      enum:
        - US-AL
        - US-AK
        - US-AZ
        - US-AR
        - US-CA
        - US-CO
        - US-CT
        - US-DE
        - US-FL
        - US-GA
        - US-HI
        - US-ID
        - US-IL
        - US-IN
        - US-IA
        - US-KS
        - US-KY
        - US-LA
        - US-ME
        - US-MD
        - US-MA
        - US-MI
        - US-MN
        - US-MS
        - US-MO
        - US-MT
        - US-NE
        - US-NV
        - US-NH
        - US-NJ
        - US-NM
        - US-NY
        - US-NC
        - US-ND
        - US-OH
        - US-OK
        - US-OR
        - US-PA
        - US-RI
        - US-SC
        - US-SD
        - US-TN
        - US-TX
        - US-UT
        - US-VT
        - US-VA
        - US-WA
        - US-WV
        - US-WI
        - US-WY
        - US-DC
        - US-AS
        - US-GU
        - US-MP
        - US-PR
        - US-VI
      title: USStateCode
      type: string
    CanadianProvinceCode:
      enum:
        - CA-AB
        - CA-BC
        - CA-MB
        - CA-NB
        - CA-NL
        - CA-NS
        - CA-ON
        - CA-PE
        - CA-QC
        - CA-SK
        - CA-NT
        - CA-NU
        - CA-YT
      title: CanadianProvinceCode
      type: string
    CompanyType:
      enum:
        - LP
        - LLP
        - LLC
        - INC
        - COOP
      title: CompanyType
      type: string
    HostedApplicationCompanyData:
      properties:
        company_name:
          anyOf:
            - type: string
            - type: "null"
          description: The name of the company
          title: Company Name
        company_currency:
          anyOf:
            - $ref: "#/components/schemas/SupportedCurrencyCode"
            - type: "null"
          description: One of a supported subset of ISO 4217 codes for the currency the
            company uses primarily
        primary_store_url:
          anyOf:
            - type: string
            - type: "null"
          description: The URL of the primary store
          title: Primary Store Url
        company_annual_revenue:
          anyOf:
            - type: integer
            - type: "null"
          description: Company's annual revenue to the nearest whole number in
            `company_currency`
          title: Company Annual Revenue
        company_onboarding_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: The date the company onboarded to the partner
          title: Company Onboarding Date
        company_incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: The date the company was incorporated
          title: Company Incorporation Date
        country:
          anyOf:
            - $ref: "#/components/schemas/SupportedCountryCode"
            - type: "null"
          description: One of a supported subset of ISO-3166-1 alpha-2 codes for the
            country the company is located in
        state:
          anyOf:
            - $ref: "#/components/schemas/USStateCode"
            - $ref: "#/components/schemas/CanadianProvinceCode"
            - type: "null"
          description: The state the company is located in
          title: State
        company_type:
          anyOf:
            - $ref: "#/components/schemas/CompanyType"
            - type: "null"
          description: The type of company
      title: HostedApplicationCompanyData
      type: object
```
