Wayflyer Handover API

The Handover API from Wayflyer — 1 operation(s) for handover.

Operations 1

POST /company/handover/ Hand over a user to Wayflyer #

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/wayflyer-handover-api"
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.

OpenAPI Specification

wayflyer-handover-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Embedded Finance Auth Handover API
  version: '1'
  description: ''
servers:
- url: https://api.wayflyer.com/financing/
  description: Production
tags:
- name: Handover
paths:
  /company/handover/:
    post:
      operationId: wf_embedded_finance_service_apps_sandbox_views_handover_handover
      summary: Hand over a user to Wayflyer
      parameters:
      - $ref: '#/components/parameters/ApiVersion'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HandoverResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HandoverErrorResponse'
      description: 'Generate a URL to redirect the user to Wayflyer where they can continue their funding application.


        Requires the company to have an open hosted application.'
      tags:
      - Handover
      security:
      - CompanyToken: []
components:
  schemas:
    HandoverResponse:
      properties:
        url:
          title: Url
          type: string
      required:
      - url
      title: HandoverResponse
      type: object
    HandoverErrorResponse:
      properties:
        error_code:
          $ref: '#/components/schemas/HandoverErrorCode'
          description: Machine-readable error code
        detail:
          description: Human-readable error message
          title: Detail
          type: string
      required:
      - error_code
      - detail
      title: HandoverErrorResponse
      type: object
    HandoverErrorCode:
      enum:
      - company_not_bootstrapped
      - no_open_hosted_application
      - company_not_active
      title: HandoverErrorCode
      type: string
  parameters:
    ApiVersion:
      in: header
      name: API-Version
      schema:
        title: API-Version
        type: string
        enum:
        - '1'
      required: false
  securitySchemes:
    CompanyToken:
      type: http
      scheme: bearer
    PartnerToken:
      type: http
      scheme: bearer