Agent skill · Security

bilt

Search Bilt Rewards travel portal for cash and Bilt Points pricing on hotels and flights. Public REST API, no auth required. Includes Home Away From Home (HaFH) properties with $300+ benefits.

borskigithub.com/borskiGitHub ↗
claude-coderead-onlyMIT
Install
npx skills add borski/travel-hacking-toolkit --skill bilt --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 15 KB
Bundled scripts: none
Allowed tools: Bash(curl*)Bash(jq*)
Path: plugins/travel-hacking-toolkit/skills/bilt/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 611
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Bilt Travel Portal Search Search [Bilt Rewards](https://www.bilt.com) travel portal via the public REST API. No authentication required for search. Returns both cash prices in USD and Bilt Points cost for hotels and flights. ## Important: Bilt is Whitelabel Duffel Bilt's travel search is built directly on top of [Duffel](https://duffel.com). All evidence points to a complete white-label arrangement, not a partial integration: - Flight offer IDs are `off_XXX`, slices `sli_XXX`, segments `seg_XXX`, aircraft `arc_XXX`, airlines `arl_XXX`. All Duffel ID patterns. - Carrier and aircraft logos served from `assets.duffel.com`. - Hotel loyalty program logos served from `assets.duffel.com/img/stays/loyalty-programmes`. So hotels are Duffel Stays. - JWT `organisation_id: org_0000AaALZyFQ...` is a Duffel auth pattern. - Field names match Duffel exactly: `marketingCarrier`, `operatingCarrier`, `cabinClassMarketingName`, `fareBasisCode`, `isNDC`, `ndcRedirectUrl`, `totalEmissionsKg`, `slices[].segments[].passengers[].baggages[]`. **What Bilt adds on top of Duffel:** - `totalPointsRequired` (Bilt Points cost at the fixed 1.25 cpp portal rate) - `isHafh` (Home Away From Home flag on hotels) - `

What's inside
Steps it walks through
  1. Important: Bilt is Whitelabel Duffel
  2. Why It Matters
  3. When to Use
  4. When NOT to Use
  5. Bilt Points Valuation
  6. API Base
  7. Hotel Search
  8. Step 1: Look up location searchId
  9. Step 2: Search hotels
  10. Required parameters
  11. Optional parameters
  12. Hotel response shape
  13. Hotel detail (room rates)
  14. Useful jq filters
Commands it runs
curl -s "https://api.biltrewards.com/public/travel/hotels/auto-complete?query=New+York" \
curl -s "https://api.biltrewards.com/public/travel/hotels/search" \
Top 10 cheapest hotels with HaFH flag and CPP rounded to 2 decimals
curl -s "$URL" | jq '
Only HaFH properties (worth $300+ benefits if Gold/Platinum)
curl -s "https://api.biltrewards.com/public/travel/flights/search" \
curl -s "https://api.biltrewards.com/public/travel/flights/search/$ID"
Polling loop
for i in 1 2 3 4 5; do
echo "Poll $i: $REMAINING batches remaining"
More from travel-hacking-toolkit
All skills →
About this skill
What does the bilt skill do?

Search Bilt Rewards travel portal for cash and Bilt Points pricing on hotels and flights. Public REST API, no auth required. Includes Home Away From Home (HaFH) properties with $300+ benefits.

How do I install it?

Run `npx skills add borski/travel-hacking-toolkit --skill bilt --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From borski/travel-hacking-toolkit, a repository with 611 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going