START HERE

From key to hotels importing data — in minutes

No onboarding call and no configuration days. The whole setup is three calls — or the same three things clicked in the dashboard.

The whole setup
01

Get your API key

Sign up and copy it from the dashboard. One header, no OAuth, nothing to refresh — and 100 free credits to spend.

02

Create the hotel yourself

No provisioning ticket and no setup weeks: every entity on your account is yours to create, by UI or by API.

03

Schedule your imports

First run by hand, with its credit estimate before you press. Then a frequency, and the Feed stays fresh on its own.

Terminal
# 01 — does my key work?
curl "https://api.veetal.app/v2/account/customer-info" \
  -H "veetal-api-key: $KEY"

# 02 — put my hotel on the account
curl -X POST "https://api.veetal.app/v2/account/accommodation" \
  -H "veetal-api-key: $KEY" \
  -d '{ ... }'

# 03 — is the import done?
curl "https://api.veetal.app/v2/account/imports" \
  -H "veetal-api-key: $KEY"

Base URL https://api.veetal.app · request body in the account reference

Whatsapp