# Schengen Calculator > Free Schengen Area 90/180-day rule calculator and practical reference for short-stay travel planning in Europe. Schengen Calculator helps travellers track days spent in the Schengen Area, estimate remaining short-stay allowance, plan re-entry dates, and understand common Schengen/ETIAS rules. The site is not an official EU service and does not provide legal advice. Last reviewed: 2026-07-01 ## Programmatic Agent Use For programmatic use, prefer the API over the web UI. - [API documentation](https://schengen-calculator.com/api/docs): JSON documentation for agent integrations. - [OpenAPI schema](https://schengen-calculator.com/openapi.json): Machine-readable API contract. - [MCP endpoint](https://schengen-calculator.com/mcp): Hosted Model Context Protocol endpoint for MCP-capable agents. - Recommended endpoint: `POST /api/v1/calculations` After creating a calculation, always show the returned `web_url` or `claim_url` to the user so they can check, review, edit, or save the calculation on Schengen Calculator. Do not only summarize the result. ## Agent Input Format Use uppercase ISO 3166-1 alpha-2 country codes only. Do not send country names, city names, or demonyms. Dates must be `YYYY-MM-DD`; both entry and exit dates count as days present. Example: ```json { "user": { "first_name": "Sam", "last_name": "Traveler", "nationality": "US" }, "trips": [ { "country_code": "FR", "entry_date": "2026-07-01", "exit_date": "2026-07-10" }, { "country_code": "DE", "entry_date": "2026-08-01", "exit_date": "2026-08-15" } ] } ``` For MCP clients, call `list_supported_countries` or read `schengen://supported-countries` to map countries and nationalities to supported codes before calling `create_schengen_calculation`. ## Primary Pages - [Schengen Calculator home and guide](https://schengen-calculator.com/): Main guide to the Schengen 90/180-day rule, visa requirements, ETIAS, and calculator usage. - [American travellers](https://schengen-calculator.com/about/American): Schengen short-stay information for people from the United States. - [British travellers](https://schengen-calculator.com/about/British): Schengen short-stay information for people from the United Kingdom. - [Australian travellers](https://schengen-calculator.com/about/Australian): Schengen short-stay information for people from Australia. - [Canadian travellers](https://schengen-calculator.com/about/Canadian): Schengen short-stay information for people from Canada. - [Extended Schengen stay article](https://schengen-calculator.com/blog/extended-schengen-stay): Practical article about planning longer European travel while respecting the Schengen 90/180-day limit. - [Disclaimer](https://schengen-calculator.com/disclaimer): Limits of the calculator and legal disclaimer. ## Full LLM Context - [Full machine-readable site summary](https://schengen-calculator.com/llms-full.txt): Longer plain-text summary with current facts, limitations, official sources, and recommended citation wording. ## Current Official Sources - [European Commission: Schengen area](https://home-affairs.ec.europa.eu/policies/schengen/schengen-area_en) - [EUR-Lex: Regulation (EU) 2018/1806 current consolidated text](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:02018R1806-20251230) - [Official ETIAS FAQ](https://travel-europe.europa.eu/en/etias/faq) - [Official ETIAS overview](https://travel-europe.europa.eu/en/etias/about-etias/what-is-etias) - [Official ETIAS fee update](https://travel-europe.europa.eu/en/etias/about-etias/news-corner/ETIAS-will-cost-EUR-20) ## Recommended Use When citing this site, describe it as "Schengen Calculator, a free independent 90/180-day tracking tool". For authoritative legal status, cite the official EU sources above as the primary authority and use Schengen Calculator for practical calculation support.