Getting Started / Introduction
Introduction
Obscyro is a SNOMED-first semantic API for healthcare data — validate, normalize, translate, expand, and disambiguate clinical codes. ICD-10 mapping is live via /v1/translate; RxNorm, LOINC, FHIR, and HL7 are on the roadmap.
Test phase (public)
Obscyro is in test phase only: no uptime or accuracy SLA. Some endpoints are more likely to show bugs, slow responses, or schema changes—especially:
POST /v1/normalize,POST /v1/normalize-batch,POST /v1/disambiguate,POST /v1/translateGET /v1/concepts/{code}/ancestors,GET /v1/concepts/{code}/descendants
Do not use responses for clinical decisions without independent verification. The same notice appears in the site banner and in the signed-in console overview.
What Obscyro is
Obscyro turns the messy reality of healthcare data — free-text notes, mismatched code systems, regional dialects, missing terminology updates — into structured JSON your application can use. Every endpoint is a thin, predictable wrapper around the SNOMED CT knowledge graph loaded in our database.
You can call it from any language that speaks HTTP. There is no SDK lock-in, no hidden state, no batch jobs. Send JSON, get JSON.
What you get out of the box
- Concept lookup against the SNOMED CT International Edition (Feb 2026 release).
- Free-text normalization (exact, full-text search, and trigram fuzzy match) into SNOMED candidates.
- Hierarchy traversal: parents, children, ancestors, and descendants via recursive
is-arelationships. - Cross-terminology mappings: SNOMED ↔ ICD-10 (via the SNOMED extended map), ICD-O, CTV3.
- Synonym, FSN, and text-definition retrieval per concept.
- Context-aware disambiguation when an abbreviation maps to multiple concepts (
MIcould be myocardial infarction, mitral insufficiency, mental illness, or military intelligence — Obscyro picks the right one given clinical context).
How it fits into your stack
Most teams add Obscyro at one of three integration points:
- Ingestion: normalize incoming free-text or partner-coded data on the way into your database.
- Display: hydrate stored codes with preferred terms and translations at render time.
- Analytics: expand concept hierarchies (e.g. all descendants of
Cardiovascular disease) before running cohort queries.
Reading this documentation
- The Core API section is your reference manual — one page per endpoint, with request/response schemas and copy-paste examples in cURL, Node.js, and Python.
- Standards explains how Obscyro models each terminology so you know what to expect in responses.
- Resources lists SDKs (coming soon), our changelog, and the
/v1/healthreadiness probe. A public status page is planned.
When you are ready, jump to the Quickstart for a 30-second integration.