Bitrefill Website Skill
Use this skill when the user wants to explore Bitrefill (bitrefill.com): learn about products, search, compare, or understand pricing and availability. Bitrefill sells digital goods (gift cards, mobile top-ups, eSIMs) and offers Bitcoin/Lightning services. All products are delivered digitally.
Programmatic access & purchases: For searching via API, buying products, managing orders, or any automated workflow, use the bitrefill-cli skill instead. This skill is browse-only — it helps users navigate and understand the website.
When to Use This Skill
Activate when the user:
- Mentions Bitrefill or bitrefill.com
- Asks how to search, find, or compare products on Bitrefill
- Needs information (pricing, availability, country restrictions, denominations)
- Wants to understand what Bitrefill offers or how a product type works
Redirect to bitrefill-cli when the user wants to:
- Buy a product, make a purchase, or pay with crypto
- Use the Bitrefill API or MCP endpoint programmatically
- Manage orders or invoices
- Perform any automated or CLI-based workflow
If the request is vague (e.g. "I need a gift"), ask what type of product and for whom (country/interests).
Quick Decision: What Does the User Want to Do?
User intent?
├─ Learn what Bitrefill offers / product types → See "Product types at a glance" below; details in references/product-types.md
├─ Search or browse for a product → references/search-and-browse.md
└─ Get detailed info (price, country, how it works)→ references/search-and-browse.md
Product Types at a Glance
| Product type |
What it is |
Main URL |
Load details when needed |
| Gift cards |
Digital gift cards (shopping, streaming, gaming, food, travel) |
bitrefill.com/{country}/{lang}/gift-cards/ |
references/product-types.md, references/supported-categories.md |
| Mobile top-ups |
Prepaid airtime/data for a phone number (200+ countries) |
bitrefill.com/refill/ |
references/product-types.md |
| eSIMs |
Travel data plans (data-only, QR activation, 190+ countries) |
bitrefill.com/esim/all-destinations or bitrefill.com/{country}/{lang}/esims/ |
references/product-types.md |
| Bitcoin / Lightning |
Channel opening, liquidity, payment tools |
bitrefill.com (relevant sections) |
references/product-types.md (brief) |
| Account & Auth |
Signup, login, password reset, referral program |
bitrefill.com/signup, /login |
references/account-and-auth.md |
Critical: Many products are country- or region-specific. Always confirm or infer the user's country (and, for top-ups, carrier) before recommending a product or flow.
- Country in URL: The first path segment is country, the second is language (e.g.
/us/en/gift-cards/, /mx/es/gift-cards/). The country segment filters the inventory shown to gift cards usable in that country. To see a specific country's inventory, use that country in the URL.
- Geolock: Purchasability is enforced at IP level, not by the URL. If a product is not purchasable, it is due to the user's IP/location, not the country chosen in the URL.
Task Flows (High Level)
Browse or search
- Identify product type (gift card / top-up / eSIM) and country (and carrier for top-ups if known).
- For quick discovery of gift cards, send the user directly to search results:
https://www.bitrefill.com/{country}/{lang}/gift-cards/?q={query} (e.g. https://www.bitrefill.com/us/en/gift-cards/?q=amazon) — no need to navigate from the home page.
- For eSIM discovery by destination, send the user to bitrefill.com/esim/all-destinations to browse 190+ countries/regions.
- Otherwise direct to the right section or use site search; help filter by category, brand, or amount.
- For depth (categories, brands, denominations): references/search-and-browse.md, references/supported-categories.md.
- Category = path. To list a category (or subcategory), use
/{country}/{lang}/gift-cards/{category-slug}/.
- Subcategories: Some categories have subcategories (e.g. travel → flights, train, bus). Same path pattern; slug = subcategory.
- Listings filters & sort: Gift-card listings (all / category / subcategory) support query params: filters —
redemptionMethod (online|instore), minRating (2–5), minRewards (1–10 cashback); sort — s=2 (A–Z), s=3 (recently added), s=4 (cashback); default = popularity. See references/search-and-browse.md.
Tips and Common Pitfalls
- Country first: Use the country in the URL to show the right inventory (cards usable in that country). Region-locked products (e.g. Amazon US vs UK) are the main source of errors — align product country with the user's.
- Geolock vs URL: Whether a product can be bought is determined by the user's IP (geolock), not by the country in the URL. The URL only controls which inventory is listed.
- Refunds: Digital goods are typically non-refundable once delivered; set expectations before purchase.
Limitations
- No scraping: Cloudflare blocks automated access to www.bitrefill.com. Do not use firecrawl or direct scraping — requests return 403.
- No API access: This skill does not use the Bitrefill API or MCP endpoint. For programmatic access (search, buy, order management), use the bitrefill-cli skill.
References
Load only when the agent needs more detail:
| Reference |
Use when |
| product-types |
Explaining gift cards vs top-ups vs eSIMs, or how each works on the site |
| search-and-browse |
User wants to find or filter products |
| supported-categories |
Listing categories or popular brands (gift cards, etc.) |
1---2name: bitrefill-website3description: Browse and search Bitrefill's 1,500+ gift cards, top-ups, and eSIMs across 180+ countries. Filter by brand, category, or country — no credentials required.4---5
6# Bitrefill Website Skill
7
8Use this skill when the user wants to **explore** Bitrefill (bitrefill.com): learn about products, search, compare, or understand pricing and availability. Bitrefill sells digital goods (gift cards, mobile top-ups, eSIMs) and offers Bitcoin/Lightning services. All products are delivered digitally.
9
10> **Programmatic access & purchases:** For searching via API, buying products, managing orders, or any automated workflow, use the **bitrefill-cli** skill instead. This skill is browse-only — it helps users navigate and understand the website.
11
12## When to Use This Skill
13
14Activate when the user:
15- Mentions **Bitrefill** or bitrefill.com
16- Asks how to **search**, **find**, or **compare** products on Bitrefill
17- Needs **information** (pricing, availability, country restrictions, denominations)
18- Wants to understand what Bitrefill offers or how a product type works
19
20**Redirect to bitrefill-cli** when the user wants to:
21- **Buy** a product, make a purchase, or pay with crypto
22- Use the Bitrefill **API** or **MCP endpoint** programmatically
23- Manage **orders** or **invoices**
24- Perform any **automated** or **CLI-based** workflow
25
26If the request is vague (e.g. "I need a gift"), ask what type of product and for whom (country/interests).
27
28## Quick Decision: What Does the User Want to Do?
29
30```
31User intent?
32├─ Learn what Bitrefill offers / product types → See "Product types at a glance" below; details in references/product-types.md
33├─ Search or browse for a product → references/search-and-browse.md
34└─ Get detailed info (price, country, how it works)→ references/search-and-browse.md
35```
36
37## Product Types at a Glance
38
39| Product type | What it is | Main URL | Load details when needed |
40|--------------|------------|----------|---------------------------|
41| **Gift cards** | Digital gift cards (shopping, streaming, gaming, food, travel) | bitrefill.com/{country}/{lang}/gift-cards/ | references/product-types.md, references/supported-categories.md |
42| **Mobile top-ups** | Prepaid airtime/data for a phone number (200+ countries) | bitrefill.com/refill/ | references/product-types.md |
43| **eSIMs** | Travel data plans (data-only, QR activation, 190+ countries) | bitrefill.com/esim/all-destinations or bitrefill.com/{country}/{lang}/esims/ | references/product-types.md |
44| **Bitcoin / Lightning** | Channel opening, liquidity, payment tools | bitrefill.com (relevant sections) | references/product-types.md (brief) |
45| **Account & Auth** | Signup, login, password reset, referral program | bitrefill.com/signup, /login | references/account-and-auth.md |
46
47**Critical:** Many products are **country- or region-specific**. Always confirm or infer the user's country (and, for top-ups, carrier) before recommending a product or flow.
48
49- **Country in URL:** The first path segment is **country**, the second is **language** (e.g. `/us/en/gift-cards/`, `/mx/es/gift-cards/`). The country segment filters the **inventory shown** to gift cards usable in that country. To see a specific country's inventory, use that country in the URL.
50- **Geolock:** Purchasability is enforced at **IP level**, not by the URL. If a product is not purchasable, it is due to the user's IP/location, not the country chosen in the URL.
51
52## Task Flows (High Level)
53
54### Browse or search
55
561. Identify **product type** (gift card / top-up / eSIM) and **country** (and carrier for top-ups if known).
572. For **quick discovery** of gift cards, send the user directly to search results: `https://www.bitrefill.com/{country}/{lang}/gift-cards/?q={query}` (e.g. `https://www.bitrefill.com/us/en/gift-cards/?q=amazon`) — no need to navigate from the home page.
583. For **eSIM discovery by destination**, send the user to **bitrefill.com/esim/all-destinations** to browse 190+ countries/regions.
594. Otherwise direct to the right section or use site search; help filter by category, brand, or amount.
605. For depth (categories, brands, denominations): **references/search-and-browse.md**, **references/supported-categories.md**.
616. **Category = path.** To list a category (or subcategory), use `/{country}/{lang}/gift-cards/{category-slug}/`.
627. **Subcategories:** Some categories have subcategories (e.g. travel → flights, train, bus). Same path pattern; slug = subcategory.
638. **Listings filters & sort:** Gift-card listings (all / category / subcategory) support query params: **filters** — `redemptionMethod` (online|instore), `minRating` (2–5), `minRewards` (1–10 cashback); **sort** — `s=2` (A–Z), `s=3` (recently added), `s=4` (cashback); default = popularity. See references/search-and-browse.md.
64
65## Tips and Common Pitfalls
66
67- **Country first:** Use the country in the URL to show the right inventory (cards usable in that country). Region-locked products (e.g. Amazon US vs UK) are the main source of errors — align product country with the user's.
68- **Geolock vs URL:** Whether a product can be bought is determined by the user's IP (geolock), not by the country in the URL. The URL only controls which inventory is listed.
69- **Refunds:** Digital goods are typically non-refundable once delivered; set expectations before purchase.
70
71## Limitations
72
73- **No scraping:** Cloudflare blocks automated access to www.bitrefill.com. Do not use firecrawl or direct scraping — requests return 403.
74- **No API access:** This skill does not use the Bitrefill API or MCP endpoint. For programmatic access (search, buy, order management), use the **bitrefill-cli** skill.
75
76## References
77
78Load only when the agent needs more detail:
79
80| Reference | Use when |
81|-----------|----------|
82| [product-types](references/product-types.md) | Explaining gift cards vs top-ups vs eSIMs, or how each works on the site |
83| [search-and-browse](references/search-and-browse.md) | User wants to find or filter products |
84| [supported-categories](references/supported-categories.md) | Listing categories or popular brands (gift cards, etc.) |