โ† All skills
Tencent SkillHub ยท Developer Tools

Amadeus Hotels

Search hotel prices and availability via Amadeus API. Find vacation hotels by city, coordinates, or amenities. Compare prices, view ratings, get offer details. Track prices with alerts. Use when user asks to "find hotels", "search hotels in [city]", "hotel prices", "vacation accommodation", "hotel deals", "track hotel price".

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Search hotel prices and availability via Amadeus API. Find vacation hotels by city, coordinates, or amenities. Compare prices, view ratings, get offer details. Track prices with alerts. Use when user asks to "find hotels", "search hotels in [city]", "hotel prices", "vacation accommodation", "hotel deals", "track hotel price".

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, references/amenities.md, scripts/auth.py, scripts/details.py, scripts/offers.py

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

Amadeus Hotels Skill ๐Ÿจ

Search hotel prices, availability, and ratings via the Amadeus Self-Service API. Perfect for vacation planning and deal hunting.

Setup

Get API credentials at https://developers.amadeus.com/self-service Create account โ†’ My Apps โ†’ Create new app Copy API Key and API Secret Set environment variables: export AMADEUS_API_KEY="your-api-key" export AMADEUS_API_SECRET="your-api-secret" export AMADEUS_ENV="test" # or "production" for real bookings Install dependency: pip install requests Free tier: ~2,000 requests/month in test, pay-per-use after in production.

Quick Reference

TaskScriptExampleSearch by cityscripts/search.py--city PAR --checkin 2026-03-15 --checkout 2026-03-20Get offersscripts/offers.py--hotels HTPAR123,HTPAR456 --adults 2Offer detailsscripts/details.py--offer-id ABC123Track pricescripts/track.py--add --hotel HTPAR123 --target 150Check trackedscripts/track.py--check

1. Hotel Search

Find hotels by city code (IATA) or coordinates: # By city python3 <skill>/scripts/search.py --city PAR --checkin 2026-03-15 --checkout 2026-03-20 # By coordinates (near a landmark) python3 <skill>/scripts/search.py --lat 48.8584 --lon 2.2945 --radius 5 --checkin 2026-03-15 --checkout 2026-03-20 # With filters python3 <skill>/scripts/search.py --city NYC --amenities WIFI,POOL,SPA --ratings 4,5 Common city codes: PAR (Paris), NYC (New York), TYO (Tokyo), BCN (Barcelona), LON (London), LAX (Los Angeles), SFO (San Francisco)

2. Get Pricing & Availability

Once you have hotel IDs from search: python3 <skill>/scripts/offers.py \ --hotels HTPAR001,HTPAR002 \ --checkin 2026-03-15 \ --checkout 2026-03-20 \ --adults 2 \ --rooms 1 Returns: Room types, prices, cancellation policies, board types.

3. Offer Details

Get full details for a specific offer before booking: python3 <skill>/scripts/details.py --offer-id <offer-id-from-search> Returns: Detailed room info, full cancellation policy, payment terms, hotel contact.

4. Hotel Ratings & Sentiment

Get aggregated review sentiment: python3 <skill>/scripts/details.py --hotel-id HTPAR001 --ratings Returns: Overall score (0-100), category scores (Staff, Location, WiFi, Cleanliness, etc.)

5. Price Tracking

Track hotels and get alerts when prices drop: # Add hotel to tracking python3 <skill>/scripts/track.py --add \ --hotel HTPAR001 \ --checkin 2026-03-15 \ --checkout 2026-03-20 \ --adults 2 \ --target 150 # Alert if price drops below $150/night # Check all tracked hotels (run via cron) python3 <skill>/scripts/track.py --check # List tracked hotels python3 <skill>/scripts/track.py --list # Remove from tracking python3 <skill>/scripts/track.py --remove --hotel HTPAR001

Cron Setup for Price Alerts

  • Add to OpenClaw cron for automatic price monitoring:
  • # Check hotel prices twice daily
  • schedule: "0 9,18 * * *"
  • task: "Run hotel price tracker and alert on drops"
  • command: "python3 <skill>/scripts/track.py --check"
  • When prices drop below target, the script outputs alert text. Configure your notification channel in the cron task.

Output Formatting

Scripts output JSON by default. Add --format human for readable output: python3 <skill>/scripts/search.py --city PAR --format human Human format example: ๐Ÿจ Hotel & Spa Paris Marais โ˜…โ˜…โ˜…โ˜… ๐Ÿ“ 15 Rue du Temple, Paris ๐Ÿ’ฐ โ‚ฌ189/night (was โ‚ฌ220) โœจ WIFI, SPA, RESTAURANT ๐Ÿ“Š Rating: 87/100 (Staff: 92, Location: 95)

Amenity Codes

Common filters for --amenities: CodeMeaningWIFIFree WiFiPOOLSwimming poolSPASpa/wellnessGYMFitness centerRESTAURANTOn-site restaurantPARKINGParking availablePETS_ALLOWEDPet-friendlyAIR_CONDITIONINGA/CKITCHENKitchen/kitchenette Full list in references/amenities.md.

โš ๏ธ Important: Pricing Disclaimer

Amadeus API prices are NOT retail prices. The API returns negotiated, net, or wholesale rates โ€” not the public prices you see on Booking.com, Expedia, or hotel websites. Key differences: Net vs Retail: API returns "net rates" (raw cost), not marked-up retail prices B2B Pricing: Designed for travel agencies/developers to add their own markup Negotiated Rates: May include corporate or consortia rates unavailable to consumers Tax Breakdown: Prices often show base + taxes separately Use these prices for comparison and tracking trends, not as exact retail quotes. Actual booking prices on consumer sites will differ.

Limitations & Notes

Test environment: Limited/cached data, not real-time. Good for development. Production: Real prices but requires "Move to Production" in Amadeus dashboard. No direct booking: API returns offer details; actual booking requires payment handling (PCI compliance). Rate limits: 10 TPS (test), 40 TPS (production). Scripts include backoff. Data freshness: Prices change frequently. Always re-check before booking elsewhere. Not retail prices: See pricing disclaimer above.

Error Handling

ErrorMeaningAction401Auth failedCheck API key/secret429Rate limitedWait and retry (auto-handled)400Bad requestCheck parameters (dates, codes)No resultsNo availabilityTry different dates or expand search

References

references/amenities.md โ€” Full amenity code list https://developers.amadeus.com/self-service/apis-docs โ€” Official API docs

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/amenities.md Docs
  • scripts/auth.py Scripts
  • scripts/details.py Scripts
  • scripts/offers.py Scripts