---
title: "CompanyDetailsSearchResponse"
url: "https://docs.wayflyer.com/apis/embedded-finance-sandbox-api-1/versions/89e9f620-626b-413f-b4ac-7605711a516f/schemas/CompanyDetailsSearchResponse"
---

> Full API specification: https://docs.wayflyer.com/apis/embedded-finance-sandbox-api-1/versions/89e9f620-626b-413f-b4ac-7605711a516f.md

# CompanyDetailsSearchResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Embedded Finance Sandbox
  version: "1"
servers:
  - url: https://sandbox-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
    CompanyDetailsSearchResponse:
      example:
        results:
          - incorporation_date: 2020-01-01
            name: Example Company
            registered_address: 123 Example St, Example City, EX 12345
            registration_number: "123456789"
      properties:
        results:
          description: List of matching companies
          items:
            $ref: "#/components/schemas/CompanyDetailsSearchResult"
          title: Results
          type: array
      required:
        - results
      title: CompanyDetailsSearchResponse
      type: object
```
