Developers · Go live in 4 steps

Build a travel product
this weekend.

One REST API. Six verticals. Sandbox the moment you sign up. Live the moment we approve KYB.

The path to production

From signup to live in four moves

  1. Step 1

    Sign up — sandbox unlocks instantly

    Confirm your email and your sandbox API key is issued automatically. Build your full integration before anyone reviews anything.

    Create account
  2. Step 2

    Submit KYB — reviewed in 24–72h

    Tell us about your business. We email the moment we approve and your live key appears in the dashboard.

    Open KYB
  3. Step 3

    Fund your wallet

    Top up USD via Stripe or NGN via Fincra bank transfer. Every booking debits your wallet — no post-paid invoices, no surprises.

    Fund wallet
  4. Step 4

    Swap sandbox → live key

    Replace tsk_sandbox_ with tsk_live_ in your env vars. That's the whole production cutover.

    Get keys

Two-line SDK

Drop our script tag, call Travsify.init(key) and you're searching live inventory.

Idempotent writes

Every booking call accepts an Idempotency-Key. Retry safely after any network blip.

Sandbox = Live

Identical JSON shape. Build against sandbox, ship to live by swapping a key prefix.

Drop-in script
<script src="https://travsify.com/sdk.js"></script>
<script>
  Travsify.init("tsk_sandbox_your_key")
    .flights.search({ origin: "LOS", destination: "DXB", departure_date: "2026-06-01", adults: 1 })
    .then(console.log);
</script>