Quick Start
Get up and running with FHIRfly in under 5 minutes.
1. Get Your API Key
Sign up at fhirfly.io/dashboard to create an account and generate your API key.
- Create an account using your email
- Create an organization
- Generate a Simple API credential
2. Make Your First Request
Once you have your API key, you can start making requests immediately.
Look up an NDC (Drug Code)
curl -X GET "https://api.fhirfly.io/v1/ndc/0069-0151-01" \
-H "x-api-key: YOUR_API_KEY"
Response
{
"data": {
"ndc": "0069-0151-01",
"ndc11": "00069015101",
"product_name": "Lipitor",
"labeler_name": "Pfizer Laboratories",
"dosage_form": "TABLET, FILM COATED",
"active_ingredients": [
{
"name": "ATORVASTATIN CALCIUM",
"strength": "10 mg"
}
]
},
"meta": {
"legal": {
"license": "public_domain"
}
}
}
3. Explore More APIs
FHIRfly provides access to multiple healthcare reference datasets:
| API | Description | Example |
|---|---|---|
| NDC | National Drug Codes | Drug product identification |
| NPI | National Provider Identifiers | Healthcare provider lookup |
| RxNorm | Drug terminology | Drug concept normalization |
| LOINC | Lab codes | Laboratory test identification |
| ICD-10 | Diagnosis codes | Medical diagnosis classification |
| CVX | Vaccine codes | Vaccine identification |
| MVX | Manufacturer codes | Vaccine manufacturer lookup |
| FDA Labels | Drug labels | Package insert information |
Next Steps
- Authentication Guide - Learn about API keys and OAuth
- Response Shapes - Understand compact, standard, and full responses
- API Reference - Interactive API explorer