Overview
Lexigram is a clinical NLP API that reads medical text and identifies clinical concepts like diagnoses, medications, and procedures using standardized ontologies. It maps extracted terms to codes from systems like ICD-10 and SNOMED CT, making it useful for healthcare data pipelines. You need an API key to use it.
Beginner Tip
Send clinical notes or discharge summaries to the /annotate endpoint to instantly extract structured medical entities without writing complex parsing logic yourself.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Lexigram",
"description": "NLP that extracts mentions of clinical concepts from text, gives access to clinical ontology",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
concepts List of clinical concepts identified in the input text. label The recognized term or phrase from the input text. code Standardized ontology code (e.g., ICD-10, SNOMED CT) for the concept. system The ontology system the code belongs to, such as ICD-10-CM or SNOMED. confidence Confidence score between 0 and 1 indicating how certain the match is. type Category of the concept, such as diagnosis, medication, or procedure. Implementation Example
const url = "https://docs.lexigram.io/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →CMS.gov
The CMS.gov Provider Data API gives access to Medicare and healthcare provider quality data from the Centers for Medicare and Medicaid Services.
FoodData Central
⭐ Beginner's PickFoodData Central is the USDA's authoritative nutritional database API, giving access to detailed nutrient profiles for hundreds of thousands of foods including branded products, raw ingredients, and restaurant items.
Infermedica
Infermedica is an AI-powered health API that analyzes symptom descriptions in plain text and suggests possible conditions or next steps.
Nutritionix
⭐ Beginner's PickNutritionix gives you access to the world's largest verified nutrition database, allowing you to look up calories, macronutrients, and micronutrients for branded and restaurant foods.
openFDA
⭐ Beginner's PickopenFDA provides free public access to FDA datasets covering drug adverse events, product recalls, medical device reports, and food safety alerts.