SDKs & Libraries

SDKs & Libraries

Integrate MediStack with your application using our official SDKs for popular programming languages

Quick Start Example
Get started with basic API calls in your preferred language
import { MediStack } from '@medistack/sdk-js';

const client = new MediStack({
  apiKey: 'your_api_key_here',
});

// Get patient information
const patient = await client.patients.get('patient_id');

// Create appointment
const appointment = await client.appointments.create({
  patientId: 'patient_id',
  doctorId: 'doctor_id',
  dateTime: new Date('2024-02-01T10:00:00'),
});
JavaScript/TypeScript
Official SDK for JavaScript and TypeScript applications
@medistack/sdk-js
npm install @medistack/sdk-js
v1.5.2
Python
Official SDK for Python applications
medistack-sdk
pip install medistack-sdk
v1.4.1
Java
Official SDK for Java applications
com.medistack:sdk
implementation "com.medistack:sdk:1.3.0"
v1.3.0
Go
Official SDK for Go applications
github.com/medistack/sdk-go
go get github.com/medistack/sdk-go
v1.2.5
PHP
Official SDK for PHP applications
medistack/sdk
composer require medistack/sdk
v1.1.8
Ruby
Official SDK for Ruby applications
medistack
gem install medistack
v1.0.5
Need Help?
Our team is here to help you integrate MediStack with your application

If you encounter any issues or need additional support, please:

  • Check our comprehensive API documentation
  • Browse our community forum for answers
  • Contact our support team for enterprise assistance
  • Report issues on GitHub