Web API (OpenAPI)
Leapter generates an OpenAPI specification for your project, giving you a standard REST API to call any published Blueprint from any application.Get the OpenAPI spec URL
- Open any Blueprint in the editor.
- Click the Share button in the toolbar.
- Select Connect.
- In the Connect dialog, select the Web API (OpenAPI) tab.

The OpenAPI spec covers all published Blueprints in the project, not just the one you currently have open.
Authentication
All API calls require an API key passed as a header:- Header name:
X-API-Key - Header value: your API key
Example: call a Blueprint with curl
The Connect dialog provides a ready-made curl command. Here is the general pattern:Use with Postman
- Copy the OpenAPI spec URL from the Connect dialog.
- In Postman, click Import and paste the URL.
- Postman generates a collection with all your Blueprint endpoints.
- Set the
X-API-Keyheader in the collection’s authorization settings. - Fill in the request body with your input values and send a request.
Use with Swagger UI
You can also paste the OpenAPI spec URL into Swagger Editor or any OpenAPI-compatible tool to explore and test your endpoints interactively.What to do next
- AI Protocol (MCP) — connect AI assistants to your Blueprints via MCP
- API Keys — create and manage API keys
- HTTP Workflow — export an n8n workflow that calls your Blueprint via HTTP