Skip to main content

This site is currently implementing core features and is not ready for patient use yet.

Developer Docs

Build with SafeTripVax API

Access real-time travel health data, vaccination requirements, and clinic information through our developer-friendly REST API.

Quick Start

Get up and running in three simple steps.

01

Create Account

Sign up for a free developer account to get your API credentials.

02

Get API Key

Generate your API key from the developer dashboard.

03

Start Building

Make your first API call and integrate travel health data.

Documentation

Everything you need to build with SafeTripVax.

Simple Integration

Get travel health data with a single API call.

fetchcurl
const response = await fetch(
  'https://api.safetripvax.com/v1/countries/PL/requirements',
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Accept': 'application/json'
    }
  }
);

const data = await response.json();
// → { country: "Poland", vaccines: [...], alerts: [...] }

Frequently Asked Questions

What data does the SafeTripVax API provide?
The API provides vaccination requirements by country, disease information, clinic locations, outbreak alerts, and travel health recommendations powered by WHO and CDC data.
Is there a free tier?
Yes. Our free developer tier includes up to 1,000 API calls per month, access to public health data endpoints, and full documentation.
How is the data kept up to date?
Our data pipeline syncs with WHO GHO, CDC, and local health authorities daily. Outbreak alerts are updated in near real-time.
What authentication method does the API use?
The API uses Bearer token authentication. Include your API key in the Authorization header of each request.
Is the API GDPR compliant?
Yes. SafeTripVax is fully GDPR compliant. We do not store personal health data through the API. See our Security documentation for details.

Ready to get started?

Create a free account and start integrating travel health data into your application today.