Agent skill

awardwallet

Query AwardWallet for loyalty program balances, elite status, and transaction history. Use when checking points inventory, airline status, or planning trips on points.

borski611★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add borski/travel-hacking-toolkit --skill awardwallet --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Path: plugins/travel-hacking-toolkit/skills/awardwallet/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

# AwardWallet Skill Query loyalty program balances, elite status, and transaction history via the AwardWallet Business Account Access API. **Source:** [business.awardwallet.com](https://business.awardwallet.com) — Requires a Business account. ## Authentication Set these in your `.env` file: - `AWARDWALLET_API_KEY` — Get from https://business.awardwallet.com/profile/api - `AWARDWALLET_USER_ID` — Your connected user ID. Find it via the List Connected Users endpoint below. All requests use the `X-Authentication` header. > **First-time setup gotcha:** AwardWallet enforces an IP allowlist on Business API keys. Without your IP whitelisted, every call returns `{"error": "access_denied", "code": "IP_DENIED"}`. **Whitelist before troubleshooting.** > > - **Where to whitelist:** https://business.awardwallet.com/profile/api > - **How to find your IP:** `curl ifconfig.me` > - **Multi-IP:** home, office, hotspot, VPN exit nodes, and any travel locations each need their own entry. Easiest is to whitelist a /24 if you're on a stable residential ISP. ### Error signatures | Response | Meaning | Fix | |---|---|---| | `{"error": "access_denied", "code": "IP_DENIED"}` | IP not on allowlist | Whitelist

What's inside
Steps it walks through
  1. Authentication
  2. Error signatures
  3. API Base
  4. Quick Start: Get All Balances
  5. Response Fields
  6. Useful jq Filters
  7. Deep Dive: Full Account History
  8. Travel Timeline
  9. List All Supported Providers
  10. Account Property Kinds
  11. Error Codes
  12. Workflow: Trip Planning Summary
  13. Notes
Commands it runs
curl -s -H "X-Authentication: $AWARDWALLET_API_KEY" \
Just airline balances with status
Just hotel balances with status
Just credit card / transferable points
All balances sorted by amount (descending), non-zero only
Elite status across all programs
Accounts with errors (need password update, etc.)
Combined summary for trip planning (airlines + transferable points, non-zero, sorted)
More from travel-hacking-toolkit
All skills →
About this skill
What does the awardwallet skill do?

Query AwardWallet for loyalty program balances, elite status, and transaction history. Use when checking points inventory, airline status, or planning trips on points.

How do I install it?

Run `npx skills add borski/travel-hacking-toolkit --skill awardwallet --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