Fortellis AsyncAPI Hello World Reference

Hello World AsyncAPI reference distributed by Fortellis to teach the asynchronous API pattern, channel topology, and message envelope conventions used across Fortellis event APIs.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/fortellis-async-hello-world"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

AsyncAPI Specification

fortellis-hello-world-asyncapi.yml Raw ↑
asyncapi: 2.0.0
id: https://helloWorldExample.com
info: 
  title: Hello World
  version: '1.0.0'
  description: This is the example hellos world asynchronous API.
  contact:
    name: Fortellis Support
    url: https://fortellis.io/contact-us
    email: support@fortellis.io
servers: 
  prod-http:
    url: https://event-relay.fortellis.io/v2/events/new-home-prod
    protocol: http
    security:
    - fortellisOAuth2: []
channels:
  hello/world: 
    subscribe: 
      summary: This is the hello world Async API spec.
      bindings: 
        http:
          type: request
          method: POST
      message: 
        $ref: "#/components/messages/HelloWorld"
components:
  messages:
    HelloWorld: 
      payload:
        type: object
        properties:
          id: 
            type: string
            description: This is the id of your hello world.
          number: 
            description: The number of times you've said hello.
            type: integer
            minimum: 0
            maximum: 20
          haveYouSaidHello:
            type: boolean
            description: This record whether you have said hello world.
          waysToSayHello:
            type: array
            items:
              type: string 
          helloID:
            type: object
            properties:
              language:
                type: string
                description: You said hello in this language.
              id: 
                type: string
                description: You said hello in a language with this id.
        contentType: application/json
        example:
          id: 6620800b-7029-4a7a-8e80-cdd852fc01c8
          number: 16
          haveYouSaidHello: true
          waysToSayHello: 
          - Hello
          - Hola
          - Hallo
          - Bonjour
          - Ola 
          helloID:
            language: English
            id: b2f7494a-5dcf-448c-9585-5301fc0dd231
  securitySchemes:
    fortellisOAuth2:
      type: oauth2
      description: OAuth2 authorization and authentication using Fortrellis.
      flows:
        authorizationCode:
          authorizationUrl: https://identity.fortellis.io/oauth2/aus1p1ixy7YL8cMq02p7/v1/authorize
          tokenUrl: https://identity.fortellis.io/oauth2/aus1p1ixy7YL8cMq02p7/v1/token
          scopes: {}