Documentation

MVX API

MethodPathDescription
GET/v1/mvx/:codeSingle MVX lookup
POST/v1/mvx/_batchBatch lookup (up to 100)
GET/v1/mvx/shapesList available response shapes

Look up Pfizer vaccine manufacturer

Request
curl -X GET "https://api.fhirfly.io/v1/mvx/PFR" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
JSON
{
  "data": {
    "code": "PFR",
    "code_system": "http://hl7.org/fhir/sid/mvx",
    "display": "Pfizer, Inc",
    "fhir_coding": {
      "code": "PFR",
      "display": "Pfizer, Inc",
      "system": "http://hl7.org/fhir/sid/mvx"
    },
    "last_updated_by_cdc": "2020-10-30",
    "manufacturer_name": "Pfizer, Inc",
    "notes": "COVID-19 vaccine in co-development with BioNTech. Pfizer includes Wyeth-Lederle Vaccines and Pediatrics, Wyeth Laboratories, Lederle Laboratories, and Praxis Biologics",
    "status": "active"
  },
  "meta": {
    "legal": {
      "attribution_required": false,
      "citation": "CDC National Center for Immunization and Respiratory Diseases. Accessed 2026-01-14 via FHIRfly.",
      "license": "public_domain",
      "source_name": "CDC Immunization"
    }
  }
}
CodeManufacturer
PFRPfizer, Inc
MODModerna US, Inc
JSNJanssen Products, LP
SKBGlaxoSmithKline
MSDMerck Sharp & Dohme

Look up multiple manufacturers

Request
curl -X POST "https://api.fhirfly.io/v1/mvx/_batch" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "codes": [
      "PFR",
      "MOD",
      "SKB"
    ]
  }'
Response
JSON
{
  "data": {
    "found": 3,
    "not_found": 0,
    "results": [
      {
        "code": "PFR",
        "data": {
          "display": "Pfizer, Inc",
          "status": "active"
        }
      },
      {
        "code": "MOD",
        "data": {
          "display": "Moderna US, Inc",
          "status": "active"
        }
      },
      {
        "code": "SKB",
        "data": {
          "display": "GlaxoSmithKline",
          "status": "active"
        }
      }
    ]
  }
}
ShapeDescription
compactCode, display, status
standard+ manufacturer_name, notes, fhir_coding
full+ ingest metadata
# Minimal data
GET /v1/mvx/PFR?shape=compact

# Standard data (default)
GET /v1/mvx/PFR?shape=standard

# Full data with provenance
GET /v1/mvx/PFR?shape=full