Skip to main content
1

Get your API key

Email team@valpas.io to request an API key. You will receive your key by email.
Store your API key in an environment variable — never hardcode it in your application.
2

Make your first request

Call the GET /hotels endpoint with your API key in the x-api-key header:
3

Understand the response

A successful request returns an array of hotel objects:
Key fields include:
  • description — marketing description of the hotel (null if not available)
  • postal_code / city / country_code — structured location details; country_code is ISO 3166-1 alpha-2
  • star_rating — official hotel star rating (null if not available)
  • website_url — hotel website (null if not available)
  • email — hotel reception email address (null if not available)
  • images — up to 3 hotel photos with captions (empty array if none)
  • certified — whether the hotel holds a current Valpas certification
  • certified_from / certified_until — certification validity period (null if not set)
  • certification_url — link target for the certification badge (null when not certified)
  • netstorming_id — Netstorming integration identifier
  • giata_id — GIATA MultiCodes property identifier, an integer (null if the hotel is not mapped or your API key lacks the giata scope)
See the API Reference for the full field descriptions.
4

Next steps

Authentication

Learn how to use your API key and handle auth errors.

API Reference

Full endpoint documentation with interactive playground.