Beta — Public REST API. API keys are issued from Settings and verified on every request; the v1 endpoints and webhooks documented below are live. The surface is small and may change before general availability. Questions or a larger scope: hello@helloben.ai

API Reference

Build integrations with the Ben AI API. Manage plans, enrollments, employees, billing, EDI transactions, and compliance programmatically. All endpoints return JSON and require Bearer token authentication unless noted.

Base URL

https://api.helloben.ai

Authentication

Include your API key in the X-API-Key header (Authorization: Bearer vb_… is also accepted):

curl -X POST -H "X-API-Key: vb_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"providerName":"Dr. Smith","planId":"plan_123","zip":"54313"}' \
  https://api.helloben.ai/api/v1/network/check

Keys are scoped (read / write / admin), can expire, and can be revoked from Settings > API Keys. Every request made with a key is rate limited per key and written to the audit log.

Loading API specification...