Getting API Access
To obtain API authentication credentials, please send an email to it@holidaymate.co with the subject line “API Access Request.” In your message, include:
- Your Name
- Company or Team
- Brief Description of Intended Use
Our IT team will review your request and reply with the necessary API key and any additional instructions.
Authentication Header
Once you have received your API key, you must include it in all API requests using a custom HTTP header named X-API-KEY
. Here's an example using curl
:
curl -G \
-H "X-API-KEY: YOUR_API_KEY" \
"https://staging.holidaymate.co/your-endpoint"
Replace YOUR_API_KEY
with the actual key provided to you.
Important: Do not use the standard
Authorization
header. The API expects credentials under theX-API-KEY
header.
Support
If you have any questions about the authentication process or encounter issues after receiving your credentials, please contact it@holidaymate.co for assistance.