API for the Nextvisit Clinical Documentation platform for developers
Nextvisit API (1.0.0)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developers.nextvisit.app/_mock/openapi
Production API
https://nextvisit.app/api
Beta API
https://ea.nextvisit.app/api
- Mock serverhttps://developers.nextvisit.app/_mock/openapi/v1/billing/plans
- Production APIhttps://nextvisit.app/api/v1/billing/plans
- Beta APIhttps://ea.nextvisit.app/api/v1/billing/plans
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.nextvisit.app/_mock/openapi/v1/billing/plans \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "plans": [ { … }, { … }, { … } ] }
- Mock serverhttps://developers.nextvisit.app/_mock/openapi/v1/billing/estimate
- Production APIhttps://nextvisit.app/api/v1/billing/estimate
- Beta APIhttps://ea.nextvisit.app/api/v1/billing/estimate
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.nextvisit.app/_mock/openapi/v1/billing/estimate \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "users": 5, "total": 995, "total_formatted": "$995.00", "renewal_date": "February 16th, 2026" }
- Mock serverhttps://developers.nextvisit.app/_mock/openapi/v1/billing/usage/{module}
- Production APIhttps://nextvisit.app/api/v1/billing/usage/{module}
- Beta APIhttps://ea.nextvisit.app/api/v1/billing/usage/{module}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.nextvisit.app/_mock/openapi/v1/billing/usage/notes \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "plan": { "name": "pro", "status": "active", "ends_at": null, "active": true, "past_due": false, "trial": { … } }, "usage": { "used": 125, "peer_reviews": "25.00", "encounters": "75.00", "documents": "25.00", "period_start": "Jan 1st, 2026", "period_end": "Jan 31st, 2026", "resets_at": "2026-01-31", "limit": 1000, "updated": "Jan 16 2026 10:30 AM" } }