# Bitcall — LLM Guide (Full) Base: https://bitcall.io ## Overview Bitcall is a telecom platform offering VoIP termination, eSIM data plans, OTP verification, Webphone, and reseller services. Pricing is dynamic and must be read from live pages. ## Products (public pages) ### VoIP - Entry: / - Countries index: /countries - Rates per country (dynamic): /countries/call-{country-name} ### OTP - Entry: /otp - Includes: features, FAQ, supported countries/services, usage overview ### Webphone - Entry: /webphone - Includes: plan tiers, features, implementation overview ### eSIM - Entry: /esim - Global plans: /esim/global - Plans by country (dynamic): /esim/{country-name} - Plans by region (dynamic): /esim/{region-name} ### Reseller - Entry: /reseller ## Canonical URL patterns - /countries/call-{country-name} - /esim/global - /esim/{country-name} - /esim/{region-name} ## Locale / i18n rules - Canonical EN is unprefixed (ex: /countries, /esim). - Other languages are prefixed: /fr/..., /ar/..., /de/..., /es/..., /tr/..., /ru/... ## Pricing rules (critical) - VoIP rates are dynamic (server API, refresh ~3600s). Do not quote prices without checking the live page. - eSIM plans/prices are dynamic (server API, refresh ~3600s). Do not hardcode plan tables. - OTP “starting from” pricing is dynamic (server API, refresh ~3600s). ## Do / Don't (LLM usage) - Do: link to canonical pages listed above. - Do: summarize features and coverage (countries count), without giving live prices. - Don’t: invent prices or plan tables. - Don’t: use query params or anchors as distinct URLs. ## Markdown mirrors (stable content) - /esim.md - /otp.md - /webphone.md - /countries.md - /reseller.md ## Context bundles - /llms-ctx.txt (structured JSON, short) - /llms-ctx-full.txt (structured JSON, extended) ## Glossary (short) - VoIP: voice over IP termination / calling rates. - eSIM: digital SIM data plans for travel. - OTP: one-time passcode verification service. - DID: direct inward dialing (virtual numbers). - SIP: session initiation protocol. ## Compliance / Stability - Avoid quoting rates in static guides; always read from live pages. - Use canonical URLs and avoid duplicates (query params, anchors, casing).