vcaremd
GuidesAPI Reference
Guides
API StatusOperational
  • Overview
  • Authentication
  • Quickstart
  • Rate Limits
  • Idempotency
  • Pagination
  • Error Handling
  • Versioning
  • API Keys
  • Webhooks Security
  • IP Allowlisting
API StatusOperational
  • Overview
  • Authentication
  • Quickstart
  • Rate Limits
  • Idempotency
  • Pagination
  • Error Handling
  • Versioning
  • API Keys
  • Webhooks Security
  • IP Allowlisting
  1. Docs
  2. Getting Started
  3. Quickstart

Quickstart

Make your first authenticated API request in under five minutes.

Install the SDK

Installbash
# Node.js
npm install @vcaremd/api

# Python
pip install vcaremd

Make your first request

list-patients.tstypescript
import { Vcaremd } from "@vcaremd/api";

const client = new Vcaremd(process.env.VCAREMD_API_KEY);

const patients = await client.patients.list({ limit: 10 });
console.log(patients.data);
AuthenticationRate Limits