Demo mode gives you complete access to every feature in Ayush Synapse — protected endpoints, FHIR resources, translation, search, and all three dashboards — without creating an account or managing any credentials. It is enabled by default via theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/sagar-grv/ayush-synapse/llms.txt
Use this file to discover all available pages before exploring further.
DEMO_MODE=True environment variable and is designed so developers, health informatics teams, and AYUSH clinicians can evaluate the platform end-to-end before committing to a production deployment.
Getting a Demo Token
Send a singlePOST request to /auth/login with a user_id and role of your choice. The server returns a signed JWT immediately.
Using the Token
Pass the token in theAuthorization header as a Bearer credential on every request to a protected endpoint.
<YOUR_TOKEN> with the value of the "token" field from the login response.
Available Demo Scenarios
Search for medical codes
Search for medical codes
The public Example response item:Try other terms such as
GET /api/search endpoint requires no token. It searches across
both NAMASTE and ICD-11 code sets simultaneously and accepts an optional
system filter (all, TM2, or Biomedicine) and a mapping filter
(all, mapped, or unmapped).headache, diabetes, or joint to see more
results. Results from both NAMASTE and ICD-11 code sets are merged in a
single response.Translate between coding systems
Translate between coding systems
POST /translate accepts a NAMASTE source code and returns the mapped
ICD-11 TM2 or Biomedicine code with equivalence type and confidence score.
A valid Bearer token is required.confidence field is a 0–1 score. Codes with a confidence below 0.8
should be reviewed by a clinician before use in production records. Try
codes NAM-001 through NAM-085 — each has a pre-loaded mapping.Access FHIR resources
Access FHIR resources
Ayush Synapse exposes three FHIR R4 resources. These endpoints require a
Bearer token.NAMASTE CodeSystem — returns the full FHIR R4 ICD-11 CodeSystem — returns the FHIR R4 ConceptMap — returns the FHIR R4 All three resources conform to FHIR Release 4 and can be imported directly
into any FHIR-capable system.
CodeSystem resource for
all loaded NAMASTE codes:CodeSystem resource combining
TM2 and Biomedicine codes:ConceptMap that encodes all
NAMASTE-to-ICD-11 mappings with equivalence types:Dashboard Tour
Three purpose-built web dashboards are available at the URLs below. Each runs in the browser and makes use of the same API endpoints described above. Open them while the server is running.Professional Dashboard
Advanced dual-coding search, FHIR resource browser, mapping analytics, and
clinical tools designed for clinicians and researchers.
URL:
URL:
http://127.0.0.1:5000/professional.htmlPublic Dashboard
Simplified condition search, health awareness content, and multilingual
support for non-technical users and patients.
URL:
URL:
http://127.0.0.1:5000/public.htmlTechnical Dashboard
Interactive API testing, system monitoring, performance metrics, and
integration guides for developers.
URL:
URL:
http://127.0.0.1:5000/technical.html