Overview
Infermedica is an AI-powered health API that analyzes symptom descriptions in plain text and suggests possible conditions or next steps. It uses NLP to understand patient-reported symptoms and helps developers build symptom checkers, triage tools, and health chatbots. You need an API key from the Infermedica developer portal to get started.
Beginner Tip
Start with the /parse endpoint to extract symptoms from free text before passing them to /diagnosis — this two-step approach gives the most accurate results.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"input": "[email protected]",
"is_valid": true,
"format_valid": true,
"details": "Input passes all validation checks"
} Field Reference
mentions List of clinical concepts (symptoms, risk factors) extracted from the input text. id Infermedica internal identifier for the recognized symptom or condition. name Human-readable name of the extracted clinical concept. common_name Everyday language name for the clinical concept. choice_id Indicates whether the symptom is present, absent, or unknown (present/absent/unknown). type Type of the concept, such as symptom or risk_factor. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://developer.infermedica.com/docs/";
// 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
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Related Tags
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.
Lexigram
Lexigram is a clinical NLP API that reads medical text and identifies clinical concepts like diagnoses, medications, and procedures using standardized ontologies.
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.