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

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

# CompanyDetailsSearchResult

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance
  version: "1"
servers:
  - url: https://api.wayflyer.com/financing/
    description: Production
components:
  schemas:
    CompanyDetailsSearchResult:
      properties:
        name:
          description: Name of the company
          title: Name
          type: string
        registration_number:
          description: Company registration number
          title: Registration Number
          type: string
        registered_address:
          anyOf:
            - type: string
            - type: "null"
          description: Company registered address
          title: Registered Address
        incorporation_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: Company incorporation date
          title: Incorporation Date
      required:
        - name
        - registration_number
        - registered_address
        - incorporation_date
      title: CompanyDetailsSearchResult
      type: object
```
