---
title: "HelloResponse"
url: "https://console.9fin.com/apis/demo-api/versions/0f60f9db-1bed-45fa-881c-d4876e2da06f/schemas/HelloResponse"
---

> Full API specification: https://console.9fin.com/apis/demo-api/versions/0f60f9db-1bed-45fa-881c-d4876e2da06f.md

# HelloResponse

Hello-world payload for smoke tests.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Demo API
  version: 0.3.0
servers:
  - description: Production environment
    url: https://api.9fin.com
components:
  schemas:
    HelloResponse:
      description: Hello-world payload for smoke tests.
      properties:
        message:
          description: Greeting message.
          title: Message
          type: string
        service:
          description: Service identifier.
          title: Service
          type: string
      required:
        - message
        - service
      title: HelloResponse
      type: object
```
