Getting Started

Make your first request in five minutes.

Search your packages, check availability, and book them. That's the whole API, packages only.

Base URL

https://services.vacayou.com/api/partner/v1

Every path below is relative to this.

Get a key

Go to Developers → API Key in the admin dashboard and click Generate. Pick Test to build against reads, Live to make real bookings.

The key is shown once, copy it. It's a server-side secret, like a password. Keep it on your backend; never put it in browser or mobile code.

First request

Send the key as a Bearer token:

curl https://services.vacayou.com/api/partner/v1/packages \
  -H "Authorization: Bearer sk_test_your_key"

You get your published packages back:

{
  "data": [
    {
      "id": 301,
      "title": "Wellness Retreat Package",
      "from_price": { "cents": 420000, "currency": "USD" },
      "properties": [{ "id": 17, "name": "Lakeview Resort" }]
    }
  ],
  "total": 1
}

No key gets you a 401.

Next


Did this page help you?