Comprehensive catalog of vaccines, products, manufacturers, and regulatory information. Search through hundreds of vaccines with detailed platform and approval data.
Core vaccine data including common names, disease targets, platforms, and status
Brand names, manufacturers, and regulatory approval details
Evidence links, documentation, and reference materials
Browse vaccine entries with detailed product information, regulatory data, and source documentation
Core vaccine information and classification data
Vaccine UID | Common Name | Disease Target | Platform | Status | First Use | Actions |
---|---|---|---|---|---|---|
VAC-COVID-001 | COVID-19 mRNA | SARS-CoV-2 | mRNA | in_use | 2020-12-11 | |
VAC-FLU-002 | Seasonal Influenza | Influenza A/B | inactivated | in_use | 1945-01-01 | |
VAC-MMR-003 | Measles, Mumps, Rubella | Measles/Mumps/Rubella | live_attenuated | in_use | 1971-04-01 | |
VAC-HPV-004 | Human Papillomavirus | HPV Types 16,18,6,11 | protein_subunit | in_use | 2006-06-08 | |
VAC-EXP-005 | Experimental Cancer | Multiple Cancer Types | viral_vector | investigational | - |
Brand names, manufacturers, and regulatory information
Product ID | Vaccine UID | Brand Name | Manufacturer | FDA BLA | WHO PQ | Actions |
---|---|---|---|---|---|---|
1001 | VAC-COVID-001 | Comirnaty | Pfizer-BioNTech | 125742 | Yes | |
1002 | VAC-COVID-001 | Spikevax | Moderna | 125663 | Yes | |
1003 | VAC-MMR-003 | M-M-R II | Merck & Co. | 103516 | Yes | |
1004 | VAC-HPV-004 | Gardasil 9 | Merck & Co. | 125508 | Yes |
Documentation, evidence links, and reference materials
Source ID | Vaccine UID | Evidence Type | Source URL | Added | Actions |
---|---|---|---|---|---|
5001 | VAC-COVID-001 | Clinical Trial | https://clinicaltrials.gov/ct2/show/NCT04368728 | 2024-01-15 | |
5002 | VAC-COVID-001 | FDA Approval | https://www.fda.gov/news-events/press-announcements/... | 2024-01-10 | |
5003 | VAC-MMR-003 | Safety Study | https://pubmed.ncbi.nlm.nih.gov/12345678 | 2024-01-08 | |
5004 | VAC-HPV-004 | Efficacy Data | https://www.nejm.org/doi/full/10.1056/... | 2024-01-05 |
Real-time searchable database with filtering capabilities, modeled after your React component
Name | Disease | Platform | Manufacturer | Status | First Public Use | Earliest Trial | Reg. Authority | WHO PQ | FDA BLA | EMA Proc. |
---|
Try adjusting your search terms or filters
Please wait while we fetch the latest information
Data Sources: Source fields should cite WHO PQ, FDA CBER, EMA EPARs, CDC Pink Book, and trial registries for dates. Keep a per-row list of URLs for auditability. Data is refreshed from API endpoints matching your database schema.
Ready to load your vaccine_catalog_seed.json data? Follow these simple steps to connect your Next.js API.
vercel --prod
Gets you a URL like:
your-app-name.vercel.app
// In vaccines page JavaScript:
vaccineCatalog.setApiEndpoint(
'https://your-app.vercel.app/api/vaccines'
);
Add CORS headers to your API route for local development
Your
vaccine_catalog_seed.json
should be an array of objects with these fields:
vaccine_uid
string
vaccine_common_name
string
disease_target
string
product_name_brand
string
platform
string
status_current_use
enum
who_prequalified
boolean
[
{
"vaccine_uid": "VAC-COVID-001",
"vaccine_common_name": "COVID-19 mRNA",
"disease_target": "SARS-CoV-2",
"product_name_brand": "Comirnaty",
"platform": "mRNA",
"manufacturer_primary": "Pfizer-BioNTech",
"status_current_use": "in_use",
"who_prequalified": true,
"fda_bla_number": "125742"
}
]
Successfully loading seed data from your API
Using built-in sample data (no API configured)
API error - using fallback sample data