SDKs & Libraries
Official client libraries for the Jump EHR API are coming soon.
We're actively developing SDKs. In the meantime, you can use the REST API directly with any HTTP client.
Planned SDKs
We're working on official client libraries for:
| Language | Status |
|---|---|
| JavaScript/TypeScript | In Development |
| Python | Planned |
| Ruby | Planned |
| PHP | Planned |
Using the REST API Directly
While we develop official SDKs, you can integrate with Jump EHR using the REST API directly:
JavaScript/Node.js
const response = await fetch(
'https://app.usejump.co.uk/functions/v1/api-v1/patients',
{
headers: {
'Authorization': 'Bearer pk_live_your_api_key',
'Content-Type': 'application/json'
}
}
);
const { data, pagination } = await response.json();Python
import requests
response = requests.get(
'https://app.usejump.co.uk/functions/v1/api-v1/patients',
headers={
'Authorization': 'Bearer pk_live_your_api_key',
'Content-Type': 'application/json'
}
)
data = response.json()Get Notified
Want to be notified when SDKs are released? Contact us at developers@jump.health.
Resources
- API Reference - Complete endpoint documentation
- API Explorer - Interactive API testing
- Authentication - API key setup