2 min readUpdated Mar 2, 2026

API Builder Reference

Vantage provides an API Builder for creating custom API endpoints. This is the primary way to expose APIs from the platform.


Overview

The API Builder lets you create HTTP endpoints backed by Vantage workflows:

  1. Define an endpoint with a method (GET, POST, PUT, DELETE) and path
  2. Connect it to a workflow using Workflow Input and Workflow Output nodes
  3. The endpoint processes requests through the workflow and returns results

Creating Endpoints

SettingDescription
NameDescriptive name for the endpoint
MethodHTTP method (GET, POST, PUT, PATCH, DELETE)
PathURL path with optional parameters (:id, :name)
DescriptionWhat the endpoint does

Connecting to Workflows

Input

Use the Workflow Input node as the first node in your workflow to receive data from the API request (path parameters, query strings, request body).

Processing

Add any workflow nodes for data processing — database queries, transformations, AI analysis, etc.

Output

Use the Workflow Output node as the last node to define the response data sent back to the API caller.


Monitoring

View API call history on the API Calls page:


For More Details