Back to Home
Documentation
RateLoft AI Documentation
Everything you need to integrate and optimize your hotel revenue with AI-powered dynamic pricing.
Quick Start
Get up and running in 5 minutes
API Reference
Complete API documentation
Integrations
Connect with your existing tools
Quick Start
1. Create Your Account
Sign up for a free trial account and get instant access to our AI pricing engine.
2. Get Your API Key
Access your dashboard and copy your unique API key from the settings page.
RATELOFT_API_KEY=rl_live_xxxxxxxxxxxxx
3. Make Your First API Call
Get optimized pricing recommendations for your property.
curl -X POST https://api.rateloft.ai/v1/pricing \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"property_id": "your_property_id",
"room_type": "standard",
"date_range": {
"start": "2024-10-05",
"end": "2024-10-12"
}
}'
Pricing API
POST/v1/pricing
Get Optimized Pricing
Returns AI-optimized room rates based on market demand, competitor analysis, and historical data.
Parameters
property_id
requiredYour unique property identifier
room_type
requiredRoom category (standard, deluxe, suite, etc.)
date_range
requiredStart and end dates for pricing optimization
Response
{
"status": "success",
"data": {
"property_id": "prop_123",
"room_type": "standard",
"recommendations": [
{
"date": "2024-10-05",
"current_rate": 120,
"optimized_rate": 135,
"confidence": 0.92,
"expected_revenue_increase": 12.5
}
],
"market_insights": {
"demand_level": "high",
"competitor_avg": 140,
"events": ["Tech Conference"]
}
}
}
Resources
SDKs & Libraries
Guides & Tutorials
Need Help?
Our support team is here to help you get the most out of RateLoft AI.