GETTING STARTED
Five steps from sign-up to a source-anchored tourism report — and, on the Agency and Institute plans, to a REST API you can wire into your own product. No card required to start.
01
Register at app.datagreat.com. The Explore tier is free forever and needs no credit card — you get 1 report per month across 5 reference countries (Türkiye, USA, UK, France, Spain). No trial clock, no sales call.
Create free account →02
Pick one of the 42 WTTC-covered economies, then choose an analytical lens: a single module (Country Snapshot, TAM·SAM·SOM, Demand Forecast 2024–2034, Investment Attractiveness) or an 8-in-1 preset such as 'Investor Pitch' that bundles several modules in one pass.
Browse 24 modules03
Hit generate and watch the four-stage pipeline run live: profile load → module computation → narrator prose → finalisation. Every quantitative claim arrives with a provenance pill linking to its exact WTTC source page. Numbers are computed deterministically; only the prose is model-written.
See the methodology04
Export to PDF from the Researcher tier upward. Analyst and Agency add white-label / full-brand PDFs and shareable public report links that need no login for the viewer (30-day links on Analyst). Reports stay scoped to your account until you explicitly share them.
Compare plans05
Generate an API key from your dashboard to pull verified tourism data programmatically. REST access ships with Agency (1,000 requests/day) and Institute (10,000 requests/day), with SSO and custom data onboarding on Institute. The quickstart below shows the request pattern.
Contact sales for APIAPI QUICKSTART
The REST API is available on Agency (1,000 requests/day) and Institute (10,000 requests/day). Authentication is a bearer token. Your live base URL and the full endpoint reference appear in the dashboard the moment you generate a key — the snippet below shows the request pattern.
# 1. Authenticate with the key from your DataGreat dashboard
export DATAGREAT_API_KEY="dg_live_…"
# 2. Request a verified report for a country + module
curl https://app.datagreat.com/api/v1/reports \
-H "Authorization: Bearer $DATAGREAT_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "country": "TUR", "module": "country-snapshot" }'
# 3. Every numeric field ships with its WTTC source anchor:
# { "claims": [ { "metric": "…", "value": …, "source": { "page": … } } ] }Endpoint paths, request bodies and the full response schema are documented per-account in the dashboard. For an early API walkthrough, email hello@datagreat.com.
Reviewed by Alper Tekin, Founder & Head of Tourism Research · Last reviewed July 15, 2026
READY?