├── .gitignore ├── images └── biomarker-tracker-for-google-sheets-cover.jpg ├── blood_tests_schema.json ├── contributing.md ├── code-of-conduct.md ├── LICENSE.MD ├── readme.md └── blood_tests_db.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /images/biomarker-tracker-for-google-sheets-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwk/awesome-biomarkers/HEAD/images/biomarker-tracker-for-google-sheets-cover.jpg -------------------------------------------------------------------------------- /blood_tests_schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Blood_Test", 3 | "type": "object", 4 | "properties": { 5 | "name": { 6 | "type": "string", 7 | "description": "Full Blood Test Name", 8 | "minLength": 3, 9 | "default": "" 10 | }, 11 | "code": { 12 | "type": "string", 13 | "description": "Blood Test Code or Abbreviation", 14 | "minLength": 3, 15 | "default": "" 16 | }, 17 | "group": { 18 | "type": "string", 19 | "description": "Grouping or Test where specific Blood Test or Biomarker is included", 20 | "enum": [ 21 | "none", 22 | "CBC", 23 | "Lipids" 24 | ], 25 | "default": "none" 26 | }, 27 | "common": { 28 | "type": "string", 29 | "description": "Common Blood Test", 30 | "enum": [ 31 | "Yes", 32 | "No" 33 | ], 34 | "default": "No" 35 | }, 36 | "one_liner": { 37 | "type": "string", 38 | "description": "One-Liner Description", 39 | "minLength": 3, 40 | "default": "" 41 | }, 42 | "description": { 43 | "type": "string", 44 | "description": "Full Description", 45 | "minLength": 3, 46 | "default": "" 47 | }, 48 | "health_category": { 49 | "type": "array", 50 | "description": "TODO", 51 | "items": { 52 | "type": "string", 53 | "enum": [ 54 | "Cardiovascular Health", 55 | "Brain and Body", 56 | "Vitamins and Minerals", 57 | "Blood Health", 58 | "Bone and Muscle Health", 59 | "Metabolic Health", 60 | "Lipids / Heart Health", 61 | "Liver Health", 62 | "Immunity" 63 | ] 64 | } 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms. 4 | 5 | - 6 | 7 | Ensure your pull request adheres to the following guidelines: 8 | 9 | - Search previous suggestions before making a new one, as yours may be a duplicate. 10 | - Suggested packages should be tested and documented. 11 | - The pull request should have a meaningful title and include a link to the package / resource and why it's awesome. 12 | - Make an individual pull request for each suggestion. 13 | - Use the following format: `[resource](link) - Description.` 14 | - Use [title-casing](http://titlecapitalization.com) (AP style). 15 | - Additions should be added to the bottom of the relevant category. 16 | - New categories, or improvements to the existing categorization are welcome. 17 | - Link to the GitHub repo, not npmjs.com. 18 | - Keep descriptions short and simple, but descriptive. 19 | - Don't mention `Biomarker`, `Blood Test` or `Blood Testing` in the description as it's implied. 20 | - Start the description with a capital and end with a full stop/period. 21 | - Check your spelling and grammar. 22 | - Make sure your text editor is set to remove trailing whitespace. 23 | 24 | Thank you for your suggestions! 25 | 26 | ### Updating your PR 27 | 28 | A lot of times, making a PR adhere to the standards above can be difficult. If the maintainers notice anything that we'd like changed, we'll ask you to edit your PR before we merge it. If you're not sure how to do that, [here is a guide](https://github.com/RichardLitt/docs/blob/master/amending-a-commit-guide.md) on the different ways you can update your PR so that we can merge it. 29 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. 4 | 5 | We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality. 6 | 7 | Examples of unacceptable behavior by participants include: 8 | 9 | * The use of sexualized language or imagery 10 | * Personal attacks 11 | * Trolling or insulting/derogatory comments 12 | * Public or private harassment 13 | * Publishing other's private information, such as physical or electronic 14 | addresses, without explicit permission 15 | * Other unethical or unprofessional conduct 16 | 17 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 18 | 19 | By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team. 20 | 21 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. 22 | 23 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer at aqs@willem.co. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident. 24 | 25 | 26 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.3.0, available at [http://contributor-covenant.org/version/1/3/0/][version] 27 | 28 | [homepage]: http://contributor-covenant.org 29 | [version]: http://contributor-covenant.org/version/1/3/0/ 30 | -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- 1 | [![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). 6 | 7 | Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. 8 | 9 | For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 10 | 11 | 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: 12 | 13 | the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; 14 | moral rights retained by the original author(s) and/or performer(s); 15 | publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; 16 | rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; 17 | rights protecting the extraction, dissemination, use and reuse of data in a Work; 18 | database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and 19 | other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 20 | 21 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 22 | 23 | 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 24 | 25 | 4. Limitations and Disclaimers. 26 | 27 | No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. 28 | Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. 29 | Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. 30 | Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. 31 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Awesome Biomarkers, Blood Tests and Health Indicators[![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | Learn more about blood testing, biomarkers, tech, and services to help quantify (and improve) your health! 4 | 5 | ## Contents 6 | 7 | - [Objectives](#objectives) 8 | - [Awesome List on Biomarkers](#awesome-list-on-biomarkers) 9 | - [Common Blood Test Panels](#common-blood-test-panels) 10 | - [Specific Biomarkers and Blood Tests](#specific-biomarkers-and-blood-tests) 11 | - [Complete Blood Count Biomarkers](#complete-blood-count-biomarkers) 12 | - [Lipids Panel Biomarkers](#lipids-panel-biomarkers) 13 | - [Comprehensive Metabolic Panel Biomarkers](#comprehensive-metabolic-panel-biomarkers) 14 | - [Additional Common and Recommended Biomarkers](#additional-common-and-recommended-biomarkers) 15 | - [Misc Blood Tests](#misc-blood-tests) 16 | - [Blood Testing Companies](#blood-testing-companies) 17 | - [Books](#books) 18 | - [Biomarker Tracker](#biomarker-tracker) 19 | - [How to Use the Blood Tests Tracker](#how-to-use-the-blood-tests-tracker) 20 | - [BiomarkerDB](#biomarkerdb) 21 | - [License](#license) 22 | 23 | ## Objectives 24 | 25 | This project has a couple of objectives: 26 | 27 | - First, to be an **awesome list about biomarkers**, blood testing, blood tracking and quantified metrics about health and wellness. That way you can learn all the basic info about blood tests and biomarker track. 28 | - Second, to provide a **biomarker tracker** so everyone has a user friendly tools for tracking and monitoring your blood biomarkers over time. Right now our recommended solution is a Google Sheets biomarker tracker. 29 | - Third, to be an **open source and community database on biomarkers**, blood test ranges and various research about these numbers. That way we can get reliable numbers and build more advanced technologies for individuals, companies and communities hoping to use biomarkers and health metrics to power the revolution in data-driven health. 30 | 31 | Feel free to use, comment, share, contribute. This is very much a collaborative effort at open source citizen science! 32 | 33 | ## Awesome List on Biomarkers 34 | 35 | > A curated list of biomarkers, blood tests, health indicators, blood testing companies and health tracking and analytics technologies, applications, tools and resources. 36 | 37 | ## Common Blood Test Panels 38 | 39 | - [Complete Blood Count (CBC) with Differential](https://en.wikipedia.org/wiki/Complete_blood_count) - Measures the numbers and percentages of various blood cell types in a blood sample. CBC is one of the most common tests used to assess and monitor overall health status. 40 | - [Lipids Panel](https://en.wikipedia.org/wiki/Lipid_profile) - Tests the fatty substances found in blood, High level of triglycerides and cholesterol are associated with increased risk of heart-related problems. 41 | - [Basic Metabolic Panel (BMP)](https://en.wikipedia.org/wiki/Basic_metabolic_panel) - Tests electrolyte levels, kidney function, and blood sugar levels. One of the most common tests used by health care providers. Consists of seven or eight biochemical tests. Used to assess and monitor overall health status, response to medication and medical therapies, and indicators of metabolic functioning. 42 | - [Comprehensive Metabolic Panel (CMP)](https://en.wikipedia.org/wiki/Comprehensive_metabolic_panel) - Tests kidney function, liver function, diabetic and parathyroid status, and electrolyte and fluid balance. The CMP includes a panel of 14 blood tests and is an expanded version of the basic metabolic panel (BMP), which includes liver tests. Also know as Chemical Screen or Complete Metabolic Panel 14 (CMP 14). 43 | 44 | ## Specific Biomarkers and Blood Tests 45 | 46 | ### Complete Blood Count Biomarkers 47 | 48 | 1. [RBC](https://en.wikipedia.org/wiki/Red_blood_cell) - Red blood cell count (corpuscles). Red blood cells are made in the bone marrow and broken down in the spleen and liver. May be elevated due to dehydration, high testosterone. May be low due to nutrient deficiencies (iron, Vit B6, Vit B12, folate), kidney dysfunction, chronic inflammation, anemia, blood loss. 49 | 2. [Hemoglobin](https://en.wikipedia.org/wiki/Hemoglobin) - Delivers oxygen throughout the blood. May be elevated due to dehydration, elevated testosterone, poor oxygen deliverability, thiamin deficiency, insulin resistance. May be deceased due to anemia, liver disease, hypothyroidism, exercise, arginine deficiency, protein deficiency, inflammation nutrient deficiencies (Vit E, magnesium, zinc, copper, selenium, Vit B6, Vit A). 50 | 3. [Hematocrit](https://en.wikipedia.org/wiki/Hematocrit) - Percentage of volume of blood composed of red blood cells. May be elevated due to dehydration, elevated testosterone, poor oxygen deliverability, thiamin deficiency, insulin resistance. May be deceased due to anemia, liver disease, hypothyroidism, exercise, arginine deficiency, protein deficiency, inflammation nutrient deficiencies (Vit E, magnesium, zinc, copper, selenium, Vit B6, Vit A). 51 | 4. [MCV](https://en.wikipedia.org/wiki/Mean_corpuscular_volume) - Mean Corpuscular Volume. An estimate of the average red blood cell size. May be elevated (“macrocytic”) due to nutrient deficiencies (Vit B12, folate, Vit C), alcohol consumption, thiamin deficiency. May be decreased (“microcytic”) due to iron deficiency, nutrient deficiencies (Vit B6, copper, zinc, Vit A, Vit C). 52 | 5. [MCH](https://en.wikipedia.org/wiki/Mean_corpuscular_hemoglobin) - Mean Corpuscular Hemoglobin. A measure of the average weight of hemoglobin per red blood cell. May be elevated (“macrocytic”) due to nutrient deficiencies (Vit B12, folate, Vit C), alcohol consumption, thiamin deficiency, and (falsely increased) by hyperlipidemia. May be decreased (“microcytic”) due to iron deficiency, nutrient deficiencies (Vit B6, copper, zinc, Vit A, Vit C). 53 | 6. [MCHC](https://en.wikipedia.org/wiki/Mean_corpuscular_hemoglobin_concentration) - Mean Corpuscular Hemoglobin Concentration. Measures the average concentration of hemoglobin in red blood cells. May be elevated (“macrocytic”) due to nutrient deficiencies (Vit B12, folate, Vit C), alcohol consumption, thiamin deficiency, and (falsely increased) by hyperlipidemia. May be decreased (“microcytic”) due to iron deficiency, nutrient deficiencies (Vit B6, copper, zinc, Vit A, Vit C). 54 | 7. [Platelets](https://en.wikipedia.org/wiki/Platelet) - Small, anucleated cell fragments in blood that are involved in clotting and important for vascular integrity. May be increased due to iron deficiency anemia, collagen diseases, hemolytic anemia, blood loss, stress, infection, inflammation. May be decreased due to alcoholism, liver dysfunction, viral/bacterial infections, pernicious anemia, bleeding. 55 | 8. MPV - Mean Platelet Volume. Measures the average size of platelets and reflects their function. May be elevated due to increased platelet production, which is often caused by loss or destruction of existing platelets. Elevated MPV can be associated with vascular disease and mortality, some cancers, type 2 diabetes, and Hashimoto's thyroiditis. MPV may be decreased due to conditions associated with under-production of platelets such as aplastic anemia or cytotoxic drug therapy. 56 | 9. [RDW](https://en.wikipedia.org/wiki/Complete_blood_count#RDW) - Red blood cell distribution width. A measurement of the variation in red blood cell size. Typically increased due to nutrient deficiency-related anemias (iron, Vit A, copper, zinc, Vit B6). 57 | 10. [Absolute Neutrophils](https://en.wikipedia.org/wiki/Neutrophil) - The most abundant white blood cell type, neutralizes pathogens. May be elevated due to bacterial infection or inflammation. May be decreased due to nutrient deficiencies (copper, B12, folate), elevations in other white blood cells. 58 | 11. [Absolute Lymphocytes](https://en.wikipedia.org/wiki/Lymphocyte) - White blood cell type including B-cells, T-cells, and Natural Killer Cells. May be elevated due to viral infections, Crohn’s and other autoimmune diseases, hypoadrenalism. May be decreased due to zinc deficiency, elevations in other white blood cells. 59 | 12. [Absolute Monocytes](https://en.wikipedia.org/wiki/Monocyte) - White blood cells that leave the circulation to become macrophages. May be elevated due to inflammation, collagen disease (i.e. Rheumatoid Arthritis), ulcerative colitis, recovery after an infection or trauma. 60 | 13. [Absolute Eosinophils](https://en.wikipedia.org/wiki/Eosinophil) - Immune cells that become active in late stage inflammation. May be elevated due to allergies, asthma, parasitic infection, hypoadrenalism, skin diseases such as eczema, ulcerative colitis, Crohn’s, aspirin sensitivity. May be decreased due to elevated cortisol. 61 | 14. [Absolute Basophils](https://en.wikipedia.org/wiki/Basophil) - White blood cells associated with inflammation and hypersensitivities. May be elevated due to inflammation, allergies, hemolytic anemia, hypothyroidism. 62 | 63 | ### Lipids Panel Biomarkers 64 | 65 | 1. [Total Cholesterol](https://en.wikipedia.org/wiki/Cholesterol) - A waxy, fat like substance that travels throughout the body in carrier lipoproteins (HDL, LDL, and VLDL); a precursor to steroid hormones and bile salts. May be elevated due to poor thyroid function, insulin resistance, blood glucose dysregulation, magnesium deficiency, dehydration, kidney disease, familial hypercholesterolemia. May be decreased due to liver dysfunction, oxidative stress, inflammation, malabsorption, anemia. 66 | 2. [Triglycerides](https://en.wikipedia.org/wiki/Triglycerides) - Measures blood levels of the major storage form of fat in our bodies; also called triacylglycerols. Must be fasting to be accurate. Implicated in cardiovascular disease. May be elevated due to blood glucose dysregulation, diabetes, hypercaloric diets, poor thyroid function, kidney disease, alcohol consumption. May be decreased due to fat malabsorption, low carbohydrate diets, calorie restriction, potentially autoimmunity. 67 | 3. [LDL-C](https://en.wikipedia.org/wiki/Low-density_lipoprotein) - The amount of cholesterol associated with Low Density Lipoprotein (LDL) particles in the blood. May be elevated due to insulin resistance, blood glucose dysregulation, poor thyroid function, kidney disease, familial hypercholesterolemia. May be low due to liver dysfunction, oxidative stress, malabsorption, anemia. 68 | 4. [HDL-C](https://en.wikipedia.org/wiki/High-density_lipoprotein) - The amount of cholesterol associated with High Density Lipoprotein (HDL) particles in the blood. May be elevated due to inflammation, oxidative stress, excessive exercise. Low HDL is associated with metabolic syndrome and may be decreased due to insulin resistance, sedentary lifestyle, poor diet quality. 69 | 70 | ### Comprehensive Metabolic Panel Biomarkers 71 | 72 | (All includes Lipids Panel: Total Cholesterol, Triglycerides, LDL-C, and HDL-C) 73 | 74 | 1. [Glucose](https://en.wikipedia.org/wiki/Glucose) - Blood sugar concentration; may be elevated due to diabetes type 1 and 2, insulin resistance, increased stress hormones, or an inability to inhibit the liver's production of glucose, or (if not fasting) ingestion of a high carbohydrate meal. 75 | 2. [BUN (Blood Urea Nitrogen)](https://en.wikipedia.org/wiki/BUN) - A marker of kidney function. May be elevated due to dehydration, poor kidney function, high protein intake, fatty liver, catabolic stress. May be decreased due to inadequate protein intake or protein malabsorption, liver disease, over hydration, and B6 deficiency. 76 | 3. [Creatinine](https://en.wikipedia.org/wiki/Creatinine) - A byproduct of creatine breakdown. May be increased due to kidney disfunction, dehydration, excessive muscle breakdown or increased muscle mass, hyperthyroidism, high meat intake, ketones. May be decreased due to low muscle mass, poor protein intake or absorption. 77 | 4. [Sodium](https://en.wikipedia.org/wiki/Sodium_in_biology) - A positively charged electrolyte, necessary for muscle contraction, nutrient absorption, neurological functioning, pH balance. May be elevated due to dehydration, hyperaldosterone (reabsorption of sodium), excess sodium intake. May be decreased due to elevated serum glucose, low cortisol, glycosuria, ketonuria, hypothyroidism, fluid loss through sweat. 78 | 5. [Potassium](https://en.wikipedia.org/wiki/Potassium_in_biology) - A positively charged electrolyte, necessary for muscle contraction, pH balance, nerve signal conduction, and action potentials. May be elevated due to renal failure, hypoaldosterone, acidosis, hemolysis, low insulin, hyperglycemia, exercise. May be decreased due to poor potassium intake, alkalosis, hyperaldosterone, excessive fluid loss, elevated insulin, low magnesium, elevated estrogen, increased catecholamines. 79 | 6. [Chloride](https://en.wikipedia.org/wiki/Serum_chloride) - A negatively charged electrolyte; important for maintaining cellular equilibrium across cell membranes and for the production of stomach acid. May be elevated due to kidney dysfunction, diarrhea, dehydration, hyperparathyroidism, hyperventilation. May be decreased due to vomiting, respiratory acidosis (hypoventilation), metabolic alkalosis, hypoaldosterone. 80 | 7. [Carbon dioxide (CO2)](https://en.wikipedia.org/wiki/Carbon_dioxide#Biological_Role) - Measures blood bicarbonate and is a surrogate marker for CO2 gas. May be elevated due to vomiting, metabolic alkalosis, respiratory acidosis (hypoventilation). May be decreased due to metabolic acidosis, respiratory alkalosis (hyperventilation). 81 | 8. Uric Acid - End product of DNA purine base metabolism and excretion in the kidneys; may indicate oxidative stress and elevated levels are associated with cardiovascular disease and diabetes. May be elevated due to gout, kidney dysfunction, excess alcohol intake, starvation, extreme calorie restriction, liver dysfunction, hemolytic anemia, excess fructose consumption, fungal infection, ketogenic diet, supplemental niacin, high protein diet, prolonged fasting, supplemental vitamin B3, excess acidity. May be decreased due to nutrient deficiencies (molybdenum, zinc, iron), oxidative stress, low purine intake (vegetarian or vegan), excess alkalinity. 82 | 9. [Albumin](https://en.wikipedia.org/wiki/Human_serum_albumin) - The most abundant plasma protein in serum, synthesized in the liver, binds to other compounds in the blood and contributes to the plasma osmotic gradient. May be elevated due to dehydration. May be decreased due to infection, inflammation, liver disease, kidney disease. 83 | 10. Globulin - A plasma protein with different subtypes. May be elevated due to cancer, autoimmunity, elevated estrogen. May be decreased due to hemolytic anemia, nephrosis, compromised immune system. 84 | 11. [Calcium](https://en.wikipedia.org/wiki/Calcium_in_biology) - Plays many roles in the body including teeth and bone health, clotting, neurotransmitter function, muscle contraction and enzyme activity. May be elevated due to alkalosis, kidney dysfunction, hyperparathyroidism, cancer, excess Vit D intake, adrenal insufficiency, excess Vit A intake. May be decreased due to poor intake or absorption, hypoparathyroidism, Vit D deficiency, magnesium deficiency. 85 | 12. Phosphorus - A mineral involved in DNA and RNA synthesis, part of ATP, helps activate enzymes. May be elevated due to Vit D toxicity, hypoparathyroidism, kidney dysfunction. May be decreased due to poor absorption, Vit D deficiency, elevated insulin, high carb diets, diarrhea, poor protein digestion. 86 | 13. [Alkaline Phosphatase (ALP)](https://en.wikipedia.org/wiki/Alkaline_phosphatase) - An enzyme found in the liver, bone, kidneys, small intestine, and placenta. May be increased due to liver obstruction, cirrhosis, gastrointestinal issues, hyperphosphatemia, hyperparathyroidism. May be decreased due to nutrient deficiencies (zinc, magnesium, and/or Vit C). 87 | 14. [Alanine amino transferase (ALT or SGPT)](https://en.wikipedia.org/wiki/Alanine_transaminase) - An enzyme found in highest concentrations in the liver but also in smaller amounts in heart, muscle and kidney. May be elevated due to hepatocellular disease, biliary issues, pancreatitis. 88 | 15. [Aspartate amino transferase (AST or SGOT)](https://en.wikipedia.org/wiki/Aspartate_transaminase) - An intracellular enzyme that is usually elevated due to active tissue and cellular destruction. May be elevated due to hepatitis, liver cirrhosis or alcoholism, hypothyroidism. May be decreased due to Vit B6 deficiency, elevated serum nitrogen. 89 | 16. LDH - Lactate dehydrogenase; may be elevated due to liver disease, hypothyroidism, skeletal muscle damage, anemia (hemolytic, pernicious), fractures. May be decreased due to reactive hypoglycemia, insulin resistance, ketosis. 90 | 17. [Total Bilirubin](https://en.wikipedia.org/wiki/Bilirubin) - A byproduct of red blood cell breakdown and an important component of bile; functions as an antioxidant. May be elevated due to excess hemolysis, liver dysfunction, bile duct obstruction, Gilbert's Syndrome. May be decreased due to oxidative stress, zinc deficiency. 91 | 18. GGT - An enzyme found primarily in the liver, kidney, and pancreas. May be elevated due to biliary tree dysfunction, alcoholism, pancreatitis, oxidative stress. May be decreased due to hypothyroidism, magnesium deficiency. 92 | 19. Iron - Measures iron bound to transferrin and represents ~⅓ of the total iron binding capacity of transferrin. By itself, is a relatively poor marker of iron status. May be elevated due to hemochromatosis and other genetic conditions, hemolytic anemia, liver damage, Vit B6 deficiency. May be decreased due to poor iron intake, poor absorption, chronic blood loss, chronic disease or infection, progesterone birth control pills. 93 | 20. TIBC - Measures the iron-binding capacity of transferrin. May be elevated due to iron deficiency, pregnancy, elevated estrogen. May be decreased due to anemia of chronic disease, chronic infection, liver dysfunction. 94 | 95 | ##### Additional Common and Recommended Biomarkers 96 | 97 | - C-Reactive Protein 98 | - Cortisol 99 | - DHEA-Sulfate 100 | - Estimated Glomerular Filtration Rate (eGFR) 101 | - Estradiol 102 | - Ferritin: The body’s iron binding protein. May be elevated due to hemochromatosis and other genetic conditions, inflammation, liver damage, hemolytic or sideroblastic anemia. May be decreased due to poor intake, poor absorption, chronic blood loss, chronic disease or infection, progesterone birth control pills. 103 | - Folate 104 | - Hemoglobin A1c 105 | - Homocysteine 106 | - Progesterone 107 | - Prostate Specific Ag (PSA) 108 | - Testosterone 109 | - Thyroid-Stimulating Hormone 110 | - Vitamin D, 25-Hydroxy 111 | 112 | ### Misc Blood Tests 113 | 114 | - ABO Grouping (Blood Typing) - Test used for classifying blood types. 115 | - Antinuclear antibody (ANA) - General test for autoimmune disease 116 | - Aluminum (Blood) - This blood test measures Aluminum levels. There are concerns that aluminum exposure from either diet or the environment may be related to Alzheimer's disease. 117 | - Arsenic (Blood) - This blood test is used to measure Arsenic levels. Arsenic toxicity affects the blood, kidneys, skin, digestive tract and central nervous system. 118 | - [Sexually transmitted diseases (STDs)](https://en.wikipedia.org/wiki/Sexually_transmitted_infection) - No single test exists for all infectious agents. Screening of sexually transmitted infections (STIs) typically includes syphilis, trichomonas, gonorrhea, chlamydia, herpes, hepatitis and HIV. 119 | 120 | ## Blood Testing Companies 121 | 122 | - Inside Tracker 123 | - WellnessFX 124 | - Life Extension 125 | 126 | ## Books 127 | 128 | - [Your Blood Never Lies](https://www.amazon.com/dp/B00DSK9S20) - Author James B. LaValle explains all of the commmon and recommended blood tests, how to read your results, and some of the most recommended interventions with medicine, lifestyle changes and supplements. 129 | - [The Blood Code: Unlock the secrets of your metabolism](https://www.amazon.com/Blood-Code-Unlock-secrets-metabolism-ebook/dp/B00JFK9M14/) - Doctor Richard Maurer offers a guide on how to order, read and act upon on your own blood test results and skin-fold caliper measurements. By understanding your metabolic blueprin, you can take the best steps through a tailored diet and exercise to improve your health and wellness. 130 | - [Blood Chemistry and CBC Analysis: Clinical Laboratory Testing from a Functional Perspective](https://www.amazon.com/Blood-Chemistry-CBC-Analysis-Perspective/dp/0976136716/) - This manual by Dr Dicken Weatherby and Dr Scott Ferguson presents a diagnostic system of blood chemistry and CBC analysis that focuses on physiological function as a marker of health. Covers of 52 blood tests with optimal and functional values. 131 | 132 | ## Biomarker Tracker 133 | 134 | ![](https://raw.githubusercontent.com/markwk/awesome-biomarkers/master/images/biomarker-tracker-for-google-sheets-cover.jpg) 135 | 136 | [Get Biomarker Tracker for Google Sheets Now](https://docs.google.com/spreadsheets/d/1gpESrmjD6TpOIlYB0-tu9uZk2fRaHkgFAsMPK9mzMKQ/edit?usp=sharing) 137 | 138 | **Biomarker Tracker** is a tracking tool for lab and blood test results. It is simple tool for logging and tracking your blood and other biomarker data. Built and shared as a Google Sheets template, it provides a way to record your test results and see if they are in or out of the target ranges. 139 | 140 | The tracker currently provides several panels: 141 | 142 | - Biomarker Tracker - Highlights key health and wellness biomarkers and a target goal 143 | - CBC 144 | - Chemistry 145 | - Lipids 146 | - Advanced - an example sheet for custom logging of additional biomarkers 147 | 148 | Ranges can be adjusted according to your lab, doctor or own targets. Based on targets, conditional formatted will highlight results outside of the range. 149 | 150 | ### How to Use the Blood Tests Tracker 151 | 152 | - If you are not already signed in, be sure to log in to a Google account. 153 | - First, navigate to [Biomarker Tracker for Google Sheet Template](https://docs.google.com/spreadsheets/d/1gpESrmjD6TpOIlYB0-tu9uZk2fRaHkgFAsMPK9mzMKQ/edit?usp=sharing). 154 | - Second, under the menu tab for "File," scroll down and select "Make a Copy." This will duplicate the sheet. 155 | - After that, go to your new tracking template and start adding your blood test results. 156 | - You may need to adjust the units, reference ranges and targets according to your lab, country and/or health situation. 157 | 158 | For problems, ideas, feedback and changes, please post a comment in the [issue queue](https://github.com/markwk/awesome-biomarkers/issues). Be sure to include a link to your version of the tracking template. 159 | 160 | ## BiomarkerDB 161 | 162 | > An Open Source Database on Biomarkers and Health Metrics 163 | 164 | While there are a number of sources on blood testing, biomarkers and medical testing, they are often difficult to navigate, non-digital and/or proprietary. In order to provide access to latest info on blood testing and biomarker ranges and research, we are building an open source database and directory on biomarkers: **[Biomarker DB](https://docs.google.com/spreadsheets/d/1WVhjSNUQh4xuc41cLuChE-DthZzEemHxeHghbCdQ2sA/edit?usp=sharing)**. 165 | 166 | This database is intended as a reliable source about the most common, researched and used biomarkers for health and wellness. It is open source and community built. 167 | 168 | **Update 8/8/19**: In order to speed development and community involvement, the latest version of the database and directory is being made available in Google Sheets [here](https://docs.google.com/spreadsheets/d/1WVhjSNUQh4xuc41cLuChE-DthZzEemHxeHghbCdQ2sA/edit?usp=sharing). Feel free to add and contribute. 169 | 170 | We intend to then transfer this into an alternative format that get be managed in code / git at a later time. 171 | 172 | ## License 173 | 174 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 175 | 176 | To the extent possible under law, [Mark Koester](http://www.markwk.com) has waived all copyright and related or neighboring rights to this work. 177 | -------------------------------------------------------------------------------- /blood_tests_db.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "00 - Blood Test Example", 4 | "code": "CODENAME", 5 | "group": "none", 6 | "common": "No", 7 | "one_liner": "One Liner Description of blood test.", 8 | "description": "Full Description of blood test.", 9 | "health_category": [ 10 | "Cardiovascular Health", 11 | "Brain and Body", 12 | "Vitamins and Minerals", 13 | "Blood Health", 14 | "Bone and Muscle Health", 15 | "Metabolic Health", 16 | "Lipids / Heart Health", 17 | "Liver Health", 18 | "Immunity" 19 | ] 20 | }, 21 | { 22 | "name": "17-Hydroxyprogesterone", 23 | "code": "", 24 | "group": "none", 25 | "common": "No", 26 | "one_liner": "", 27 | "description": "", 28 | "health_category": [ 29 | ] 30 | }, 31 | { 32 | "name": "24 hour VMA", 33 | "code": "", 34 | "group": "none", 35 | "common": "No", 36 | "one_liner": "", 37 | "description": "", 38 | "health_category": [ 39 | ] 40 | }, 41 | { 42 | "name": "24-hour Urine Copper", 43 | "code": "", 44 | "group": "none", 45 | "common": "No", 46 | "one_liner": "", 47 | "description": "", 48 | "health_category": [ 49 | ] 50 | }, 51 | { 52 | "name": "24-hour Urine Protein", 53 | "code": "", 54 | "group": "none", 55 | "common": "No", 56 | "one_liner": "", 57 | "description": "", 58 | "health_category": [ 59 | ] 60 | }, 61 | { 62 | "name": "25 Dihydroxy-vitamin D", 63 | "code": "", 64 | "group": "none", 65 | "common": "No", 66 | "one_liner": "Levels of Vitamin D", 67 | "description": "", 68 | "health_category": [ 69 | "Bone and Muscle Health", 70 | "Vitamins and Minerals" 71 | ] 72 | }, 73 | { 74 | "name": "25-Hydroxyvitamin D", 75 | "code": "", 76 | "group": "none", 77 | "common": "Yes", 78 | "one_liner": "", 79 | "description": "", 80 | "health_category": [ 81 | ] 82 | }, 83 | { 84 | "name": "5-HIAA", 85 | "code": "", 86 | "group": "none", 87 | "common": "No", 88 | "one_liner": "", 89 | "description": "", 90 | "health_category": [ 91 | ] 92 | }, 93 | { 94 | "name": "A1AT", 95 | "code": "", 96 | "group": "none", 97 | "common": "No", 98 | "one_liner": "Alpha-1 Antitrypsin", 99 | "description": "", 100 | "health_category": [ 101 | "Metabolic Health", 102 | "Immunity" 103 | ] 104 | }, 105 | { 106 | "name": "A1C and Estimated Average Glucose", 107 | "code": "", 108 | "group": "none", 109 | "common": "Yes", 110 | "one_liner": "", 111 | "description": "", 112 | "health_category": [ 113 | ] 114 | }, 115 | { 116 | "name": "ABO Grouping and Rh Typing", 117 | "code": "", 118 | "group": "none", 119 | "common": "Yes", 120 | "one_liner": "", 121 | "description": "", 122 | "health_category": [ 123 | ] 124 | }, 125 | { 126 | "name": "Acetone", 127 | "code": "", 128 | "group": "none", 129 | "common": "Yes", 130 | "one_liner": "", 131 | "description": "", 132 | "health_category": [ 133 | ] 134 | }, 135 | { 136 | "name": "ACTH", 137 | "code": "", 138 | "group": "none", 139 | "common": "No", 140 | "one_liner": "Adrenocorticotropic Hormone Cortisol Modulator", 141 | "description": "", 142 | "health_category": [ 143 | "Metabolic Health" 144 | ] 145 | }, 146 | { 147 | "name": "Aerobic Wound Culture", 148 | "code": "", 149 | "group": "none", 150 | "common": "Yes", 151 | "one_liner": "", 152 | "description": "", 153 | "health_category": [ 154 | ] 155 | }, 156 | { 157 | "name": "AFB Smear and Culture", 158 | "code": "", 159 | "group": "none", 160 | "common": "Yes", 161 | "one_liner": "", 162 | "description": "", 163 | "health_category": [ 164 | ] 165 | }, 166 | { 167 | "name": "AFP Maternal Screen", 168 | "code": "", 169 | "group": "none", 170 | "common": "Yes", 171 | "one_liner": "", 172 | "description": "", 173 | "health_category": [ 174 | ] 175 | }, 176 | { 177 | "name": "AFP Tumor Markers", 178 | "code": "", 179 | "group": "none", 180 | "common": "No", 181 | "one_liner": "", 182 | "description": "", 183 | "health_category": [ 184 | ] 185 | }, 186 | { 187 | "name": "Albumin", 188 | "code": "", 189 | "group": "none", 190 | "common": "No", 191 | "one_liner": "Albumin Liver Protein", 192 | "description": "", 193 | "health_category": [ 194 | "Metabolic Health", 195 | "Liver Health" 196 | ] 197 | }, 198 | { 199 | "name": "Albumin/creatinine Ratio", 200 | "code": "", 201 | "group": "none", 202 | "common": "No", 203 | "one_liner": "", 204 | "description": "", 205 | "health_category": [ 206 | ] 207 | }, 208 | { 209 | "name": "Albumin/globulin Ratio", 210 | "code": "", 211 | "group": "none", 212 | "common": "No", 213 | "one_liner": "", 214 | "description": "", 215 | "health_category": [ 216 | ] 217 | }, 218 | { 219 | "name": "Aldosterone and Renin", 220 | "code": "", 221 | "group": "none", 222 | "common": "No", 223 | "one_liner": "", 224 | "description": "", 225 | "health_category": [ 226 | ] 227 | }, 228 | { 229 | "name": "Aldosterone, Serum", 230 | "code": "", 231 | "group": "none", 232 | "common": "No", 233 | "one_liner": "", 234 | "description": "", 235 | "health_category": [ 236 | ] 237 | }, 238 | { 239 | "name": "Alkaline Phosphatase", 240 | "code": "", 241 | "group": "none", 242 | "common": "No", 243 | "one_liner": "", 244 | "description": "", 245 | "health_category": [ 246 | ] 247 | }, 248 | { 249 | "name": "Allergen-specific Ige Antibody Test", 250 | "code": "", 251 | "group": "none", 252 | "common": "No", 253 | "one_liner": "", 254 | "description": "", 255 | "health_category": [ 256 | ] 257 | }, 258 | { 259 | "name": "Allergy Screen", 260 | "code": "", 261 | "group": "none", 262 | "common": "No", 263 | "one_liner": "", 264 | "description": "", 265 | "health_category": [ 266 | ] 267 | }, 268 | { 269 | "name": "Alloantibody Identification", 270 | "code": "", 271 | "group": "none", 272 | "common": "No", 273 | "one_liner": "", 274 | "description": "", 275 | "health_category": [ 276 | ] 277 | }, 278 | { 279 | "name": "ALT", 280 | "code": "", 281 | "group": "none", 282 | "common": "No", 283 | "one_liner": "Alanine Transaminase Liver Enzyme", 284 | "description": "", 285 | "health_category": [ 286 | "Liver Health" 287 | ] 288 | }, 289 | { 290 | "name": "AMA", 291 | "code": "", 292 | "group": "none", 293 | "common": "No", 294 | "one_liner": "Anti-Microsomal Antibody", 295 | "description": "", 296 | "health_category": [ 297 | "Immunity" 298 | ] 299 | }, 300 | { 301 | "name": "Ammonia", 302 | "code": "", 303 | "group": "none", 304 | "common": "No", 305 | "one_liner": "", 306 | "description": "", 307 | "health_category": [ 308 | ] 309 | }, 310 | { 311 | "name": "Amylase", 312 | "code": "", 313 | "group": "none", 314 | "common": "No", 315 | "one_liner": "", 316 | "description": "", 317 | "health_category": [ 318 | "Metabolic Health" 319 | ] 320 | }, 321 | { 322 | "name": "ANA", 323 | "code": "", 324 | "group": "none", 325 | "common": "No", 326 | "one_liner": "Antinuclear Antibody", 327 | "description": "", 328 | "health_category": [ 329 | "Immunity" 330 | ] 331 | }, 332 | { 333 | "name": "Anaerobic Wound Culture", 334 | "code": "", 335 | "group": "none", 336 | "common": "No", 337 | "one_liner": "", 338 | "description": "", 339 | "health_category": [ 340 | ] 341 | }, 342 | { 343 | "name": "Angiotensin-converting Enzyme", 344 | "code": "", 345 | "group": "none", 346 | "common": "No", 347 | "one_liner": "", 348 | "description": "", 349 | "health_category": [ 350 | ] 351 | }, 352 | { 353 | "name": "Anion Gap", 354 | "code": "", 355 | "group": "none", 356 | "common": "Yes", 357 | "one_liner": "", 358 | "description": "The gap between negatively and positively-charged electrolytes.", 359 | "health_category": [ 360 | "Blood Health", 361 | "Metabolic Health" 362 | ] 363 | }, 364 | { 365 | "name": "Antibody ID, RBC", 366 | "code": "", 367 | "group": "none", 368 | "common": "No", 369 | "one_liner": "", 370 | "description": "", 371 | "health_category": [ 372 | ] 373 | }, 374 | { 375 | "name": "Antiphospholipid Antibodies", 376 | "code": "", 377 | "group": "none", 378 | "common": "No", 379 | "one_liner": "", 380 | "description": "", 381 | "health_category": [ 382 | ] 383 | }, 384 | { 385 | "name": "Antithrombin III", 386 | "code": "", 387 | "group": "none", 388 | "common": "No", 389 | "one_liner": "", 390 | "description": "", 391 | "health_category": [ 392 | ] 393 | }, 394 | { 395 | "name": "Antithyroglobulin Antibody", 396 | "code": "", 397 | "group": "none", 398 | "common": "No", 399 | "one_liner": "", 400 | "description": "", 401 | "health_category": [ 402 | ] 403 | }, 404 | { 405 | "name": "APOE Genotype", 406 | "code": "", 407 | "group": "none", 408 | "common": "No", 409 | "one_liner": "", 410 | "description": "", 411 | "health_category": [ 412 | ] 413 | }, 414 | { 415 | "name": "Apolipoprotein A-i", 416 | "code": "", 417 | "group": "none", 418 | "common": "No", 419 | "one_liner": "", 420 | "description": "", 421 | "health_category": [ 422 | ] 423 | }, 424 | { 425 | "name": "Apolipoprotein B-100", 426 | "code": "", 427 | "group": "none", 428 | "common": "No", 429 | "one_liner": "", 430 | "description": "", 431 | "health_category": [ 432 | ] 433 | }, 434 | { 435 | "name": "APTT", 436 | "code": "", 437 | "group": "none", 438 | "common": "No", 439 | "one_liner": "Activated Partial Thromboplastin Clotting Time", 440 | "description": "", 441 | "health_category": [ 442 | "Blood Health" 443 | ] 444 | }, 445 | { 446 | "name": "Arachidonic Acid/EPA Ratio", 447 | "code": "", 448 | "group": "none", 449 | "common": "No", 450 | "one_liner": "", 451 | "description": "", 452 | "health_category": [ 453 | ] 454 | }, 455 | { 456 | "name": "Arterial Blood Gases", 457 | "code": "", 458 | "group": "none", 459 | "common": "No", 460 | "one_liner": "", 461 | "description": "", 462 | "health_category": [ 463 | ] 464 | }, 465 | { 466 | "name": "ASO", 467 | "code": "", 468 | "group": "none", 469 | "common": "No", 470 | "one_liner": "Antistreptolysin O Strep Marker", 471 | "description": "", 472 | "health_category": [ 473 | ] 474 | }, 475 | { 476 | "name": "AST", 477 | "code": "", 478 | "group": "none", 479 | "common": "No", 480 | "one_liner": "Aspartate Aminotransferase", 481 | "description": "", 482 | "health_category": [ 483 | "Liver Health" 484 | ] 485 | }, 486 | { 487 | "name": "AT III", 488 | "code": "", 489 | "group": "none", 490 | "common": "No", 491 | "one_liner": "", 492 | "description": "", 493 | "health_category": [ 494 | ] 495 | }, 496 | { 497 | "name": "Atypical Lymphocytes", 498 | "code": "", 499 | "group": "none", 500 | "common": "No", 501 | "one_liner": "", 502 | "description": "", 503 | "health_category": [ 504 | "Immunity" 505 | ] 506 | }, 507 | { 508 | "name": "Basic Metabolic Panel", 509 | "code": "", 510 | "group": "none", 511 | "common": "No", 512 | "one_liner": "", 513 | "description": "", 514 | "health_category": [ 515 | ] 516 | }, 517 | { 518 | "name": "Beta HCG", 519 | "code": "", 520 | "group": "none", 521 | "common": "No", 522 | "one_liner": "", 523 | "description": "", 524 | "health_category": [ 525 | ] 526 | }, 527 | { 528 | "name": "Beta-2 Microglobulin", 529 | "code": "", 530 | "group": "none", 531 | "common": "No", 532 | "one_liner": "", 533 | "description": "", 534 | "health_category": [ 535 | ] 536 | }, 537 | { 538 | "name": "Beta-hydroxybutyrate", 539 | "code": "", 540 | "group": "none", 541 | "common": "No", 542 | "one_liner": "", 543 | "description": "", 544 | "health_category": [ 545 | ] 546 | }, 547 | { 548 | "name": "Bicarbonate", 549 | "code": "", 550 | "group": "none", 551 | "common": "No", 552 | "one_liner": "", 553 | "description": "", 554 | "health_category": [ 555 | ] 556 | }, 557 | { 558 | "name": "Bilirubin", 559 | "code": "", 560 | "group": "none", 561 | "common": "No", 562 | "one_liner": "", 563 | "description": "", 564 | "health_category": [ 565 | ] 566 | }, 567 | { 568 | "name": "Blood Culture", 569 | "code": "", 570 | "group": "none", 571 | "common": "No", 572 | "one_liner": "", 573 | "description": "", 574 | "health_category": [ 575 | ] 576 | }, 577 | { 578 | "name": "BNP", 579 | "code": "", 580 | "group": "none", 581 | "common": "No", 582 | "one_liner": "Natriuretic Peptide Heart Failure Marker", 583 | "description": "", 584 | "health_category": [ 585 | "Cardiovascular Health" 586 | ] 587 | }, 588 | { 589 | "name": "Body Fluid Analysis", 590 | "code": "", 591 | "group": "none", 592 | "common": "No", 593 | "one_liner": "", 594 | "description": "", 595 | "health_category": [ 596 | ] 597 | }, 598 | { 599 | "name": "Bone Marrow Aspiration and Biopsy", 600 | "code": "", 601 | "group": "none", 602 | "common": "No", 603 | "one_liner": "", 604 | "description": "", 605 | "health_category": [ 606 | ] 607 | }, 608 | { 609 | "name": "Bordetella Pertussis Antibodies", 610 | "code": "", 611 | "group": "none", 612 | "common": "No", 613 | "one_liner": "", 614 | "description": "", 615 | "health_category": [ 616 | ] 617 | }, 618 | { 619 | "name": "Bordetella Pertussis Culture", 620 | "code": "", 621 | "group": "none", 622 | "common": "No", 623 | "one_liner": "", 624 | "description": "", 625 | "health_category": [ 626 | ] 627 | }, 628 | { 629 | "name": "Bordetella Pertussis DFA", 630 | "code": "", 631 | "group": "none", 632 | "common": "No", 633 | "one_liner": "", 634 | "description": "", 635 | "health_category": [ 636 | ] 637 | }, 638 | { 639 | "name": "Bordetella Pertussis PCR", 640 | "code": "", 641 | "group": "none", 642 | "common": "No", 643 | "one_liner": "", 644 | "description": "", 645 | "health_category": [ 646 | ] 647 | }, 648 | { 649 | "name": "BRCA-1 and BRCA-2", 650 | "code": "", 651 | "group": "none", 652 | "common": "No", 653 | "one_liner": "", 654 | "description": "", 655 | "health_category": [ 656 | ] 657 | }, 658 | { 659 | "name": "BUN", 660 | "code": "", 661 | "group": "none", 662 | "common": "No", 663 | "one_liner": "Blood Urea Nitrogen", 664 | "description": "", 665 | "health_category": [ 666 | ] 667 | }, 668 | { 669 | "name": "C-peptide", 670 | "code": "", 671 | "group": "none", 672 | "common": "No", 673 | "one_liner": "", 674 | "description": "", 675 | "health_category": [ 676 | ] 677 | }, 678 | { 679 | "name": "C3", 680 | "code": "", 681 | "group": "none", 682 | "common": "No", 683 | "one_liner": "", 684 | "description": "", 685 | "health_category": [ 686 | ] 687 | }, 688 | { 689 | "name": "C4", 690 | "code": "", 691 | "group": "none", 692 | "common": "No", 693 | "one_liner": "", 694 | "description": "", 695 | "health_category": [ 696 | ] 697 | }, 698 | { 699 | "name": "CA 125", 700 | "code": "", 701 | "group": "none", 702 | "common": "No", 703 | "one_liner": "", 704 | "description": "", 705 | "health_category": [ 706 | ] 707 | }, 708 | { 709 | "name": "CA 15-3", 710 | "code": "", 711 | "group": "none", 712 | "common": "No", 713 | "one_liner": "", 714 | "description": "", 715 | "health_category": [ 716 | ] 717 | }, 718 | { 719 | "name": "CA 19-9", 720 | "code": "", 721 | "group": "none", 722 | "common": "No", 723 | "one_liner": "", 724 | "description": "", 725 | "health_category": [ 726 | ] 727 | }, 728 | { 729 | "name": "Caffeine", 730 | "code": "", 731 | "group": "none", 732 | "common": "No", 733 | "one_liner": "", 734 | "description": "", 735 | "health_category": [ 736 | ] 737 | }, 738 | { 739 | "name": "Calcitonin", 740 | "code": "", 741 | "group": "none", 742 | "common": "No", 743 | "one_liner": "", 744 | "description": "", 745 | "health_category": [ 746 | ] 747 | }, 748 | { 749 | "name": "Calcium", 750 | "code": "", 751 | "group": "none", 752 | "common": "No", 753 | "one_liner": "", 754 | "description": "", 755 | "health_category": [ 756 | ] 757 | }, 758 | { 759 | "name": "Carbamazepine", 760 | "code": "", 761 | "group": "none", 762 | "common": "No", 763 | "one_liner": "", 764 | "description": "", 765 | "health_category": [ 766 | ] 767 | }, 768 | { 769 | "name": "CO2, Blood", 770 | "code": "", 771 | "group": "none", 772 | "common": "No", 773 | "one_liner": "Carbon Dioxide Level", 774 | "description": "", 775 | "health_category": [ 776 | ] 777 | }, 778 | { 779 | "name": "Cardiolipin Antibodies", 780 | "code": "", 781 | "group": "none", 782 | "common": "No", 783 | "one_liner": "", 784 | "description": "", 785 | "health_category": [ 786 | ] 787 | }, 788 | { 789 | "name": "Catecholamines", 790 | "code": "", 791 | "group": "none", 792 | "common": "No", 793 | "one_liner": "", 794 | "description": "", 795 | "health_category": [ 796 | ] 797 | }, 798 | { 799 | "name": "CBC", 800 | "code": "", 801 | "group": "none", 802 | "common": "Yes", 803 | "one_liner": "Complete Blood Count", 804 | "description": "", 805 | "health_category": [ 806 | ] 807 | }, 808 | { 809 | "name": "CBC with Differential", 810 | "code": "", 811 | "group": "none", 812 | "common": "Yes", 813 | "one_liner": "Complete Blood Count with Differential", 814 | "description": "", 815 | "health_category": [ 816 | ] 817 | }, 818 | { 819 | "name": "CD4 and CD8", 820 | "code": "", 821 | "group": "none", 822 | "common": "No", 823 | "one_liner": "", 824 | "description": "", 825 | "health_category": [ 826 | ] 827 | }, 828 | { 829 | "name": "CD4 Lymphocyte Count", 830 | "code": "", 831 | "group": "none", 832 | "common": "No", 833 | "one_liner": "", 834 | "description": "", 835 | "health_category": [ 836 | ] 837 | }, 838 | { 839 | "name": "CD4/CD8 Ratio", 840 | "code": "", 841 | "group": "none", 842 | "common": "No", 843 | "one_liner": "", 844 | "description": "", 845 | "health_category": [ 846 | ] 847 | }, 848 | { 849 | "name": "CD8 Lymphocyte Count", 850 | "code": "", 851 | "group": "none", 852 | "common": "No", 853 | "one_liner": "", 854 | "description": "", 855 | "health_category": [ 856 | ] 857 | }, 858 | { 859 | "name": "CEA", 860 | "code": "", 861 | "group": "none", 862 | "common": "No", 863 | "one_liner": "Carcinoembryonic Antigen Cancer Marker", 864 | "description": "", 865 | "health_category": [ 866 | ] 867 | }, 868 | { 869 | "name": "Centromere Antibody", 870 | "code": "", 871 | "group": "none", 872 | "common": "No", 873 | "one_liner": "", 874 | "description": "", 875 | "health_category": [ 876 | ] 877 | }, 878 | { 879 | "name": "Chem 7", 880 | "code": "", 881 | "group": "none", 882 | "common": "No", 883 | "one_liner": "", 884 | "description": "", 885 | "health_category": [ 886 | ] 887 | }, 888 | { 889 | "name": "Chemokine Panel", 890 | "code": "", 891 | "group": "none", 892 | "common": "No", 893 | "one_liner": "", 894 | "description": "", 895 | "health_category": [ 896 | "Immunity" 897 | ] 898 | }, 899 | { 900 | "name": "Chlamydia and GC Amplied Probe", 901 | "code": "", 902 | "group": "none", 903 | "common": "No", 904 | "one_liner": "", 905 | "description": "", 906 | "health_category": [ 907 | ] 908 | }, 909 | { 910 | "name": "Chlamydia Trachomatis Amplified Probe", 911 | "code": "", 912 | "group": "none", 913 | "common": "No", 914 | "one_liner": "", 915 | "description": "", 916 | "health_category": [ 917 | ] 918 | }, 919 | { 920 | "name": "Chlamydia Trachomatis Culture", 921 | "code": "", 922 | "group": "none", 923 | "common": "No", 924 | "one_liner": "", 925 | "description": "", 926 | "health_category": [ 927 | ] 928 | }, 929 | { 930 | "name": "Chlamydia Trachomatis DFA", 931 | "code": "", 932 | "group": "none", 933 | "common": "No", 934 | "one_liner": "", 935 | "description": "", 936 | "health_category": [ 937 | ] 938 | }, 939 | { 940 | "name": "Chlamydia Trachomatis DNA Probe", 941 | "code": "", 942 | "group": "none", 943 | "common": "No", 944 | "one_liner": "", 945 | "description": "", 946 | "health_category": [ 947 | ] 948 | }, 949 | { 950 | "name": "Chloride", 951 | "code": "", 952 | "group": "none", 953 | "common": "No", 954 | "one_liner": "", 955 | "description": "", 956 | "health_category": [ 957 | ] 958 | }, 959 | { 960 | "name": "Cholesterol", 961 | "code": "", 962 | "group": "none", 963 | "common": "No", 964 | "one_liner": "", 965 | "description": "", 966 | "health_category": [ 967 | ] 968 | }, 969 | { 970 | "name": "Chromogranin A", 971 | "code": "", 972 | "group": "none", 973 | "common": "No", 974 | "one_liner": "", 975 | "description": "", 976 | "health_category": [ 977 | ] 978 | }, 979 | { 980 | "name": "Chymotrypsin", 981 | "code": "", 982 | "group": "none", 983 | "common": "No", 984 | "one_liner": "", 985 | "description": "", 986 | "health_category": [ 987 | ] 988 | }, 989 | { 990 | "name": "Citrulline Antibody", 991 | "code": "", 992 | "group": "none", 993 | "common": "No", 994 | "one_liner": "", 995 | "description": "", 996 | "health_category": [ 997 | ] 998 | }, 999 | { 1000 | "name": "CK", 1001 | "code": "", 1002 | "group": "none", 1003 | "common": "No", 1004 | "one_liner": "", 1005 | "description": "", 1006 | "health_category": [ 1007 | ] 1008 | }, 1009 | { 1010 | "name": "CKMB", 1011 | "code": "", 1012 | "group": "none", 1013 | "common": "No", 1014 | "one_liner": "", 1015 | "description": "", 1016 | "health_category": [ 1017 | ] 1018 | }, 1019 | { 1020 | "name": "Clostridium Difficile Toxin", 1021 | "code": "", 1022 | "group": "none", 1023 | "common": "No", 1024 | "one_liner": "", 1025 | "description": "", 1026 | "health_category": [ 1027 | ] 1028 | }, 1029 | { 1030 | "name": "Comprehensive Metabolic Panel", 1031 | "code": "", 1032 | "group": "none", 1033 | "common": "No", 1034 | "one_liner": "", 1035 | "description": "", 1036 | "health_category": [ 1037 | ] 1038 | }, 1039 | { 1040 | "name": "Copper", 1041 | "code": "", 1042 | "group": "none", 1043 | "common": "No", 1044 | "one_liner": "", 1045 | "description": "", 1046 | "health_category": [ 1047 | ] 1048 | }, 1049 | { 1050 | "name": "Cortisol", 1051 | "code": "", 1052 | "group": "none", 1053 | "common": "No", 1054 | "one_liner": "", 1055 | "description": "", 1056 | "health_category": [ 1057 | ] 1058 | }, 1059 | { 1060 | "name": "Creatine Kinase", 1061 | "code": "", 1062 | "group": "none", 1063 | "common": "No", 1064 | "one_liner": "", 1065 | "description": "", 1066 | "health_category": [ 1067 | ] 1068 | }, 1069 | { 1070 | "name": "Creatinine", 1071 | "code": "", 1072 | "group": "none", 1073 | "common": "No", 1074 | "one_liner": "", 1075 | "description": "", 1076 | "health_category": [ 1077 | ] 1078 | }, 1079 | { 1080 | "name": "Creatinine Clearance", 1081 | "code": "", 1082 | "group": "none", 1083 | "common": "No", 1084 | "one_liner": "", 1085 | "description": "", 1086 | "health_category": [ 1087 | ] 1088 | }, 1089 | { 1090 | "name": "CRP", 1091 | "code": "", 1092 | "group": "none", 1093 | "common": "No", 1094 | "one_liner": "C-Reactive Protein", 1095 | "description": "", 1096 | "health_category": [ 1097 | ] 1098 | }, 1099 | { 1100 | "name": "CSF Analysis", 1101 | "code": "", 1102 | "group": "none", 1103 | "common": "No", 1104 | "one_liner": "Cerebrospinal Fluid Analysis", 1105 | "description": "", 1106 | "health_category": [ 1107 | ] 1108 | }, 1109 | { 1110 | "name": "Culture and Sensitivity", 1111 | "code": "", 1112 | "group": "none", 1113 | "common": "No", 1114 | "one_liner": "", 1115 | "description": "", 1116 | "health_category": [ 1117 | ] 1118 | }, 1119 | { 1120 | "name": "Cyclic Citrullinated Peptide Antibody", 1121 | "code": "", 1122 | "group": "none", 1123 | "common": "No", 1124 | "one_liner": "", 1125 | "description": "", 1126 | "health_category": [ 1127 | ] 1128 | }, 1129 | { 1130 | "name": "Cystic Fibrosis Enzyme Screen", 1131 | "code": "", 1132 | "group": "none", 1133 | "common": "No", 1134 | "one_liner": "", 1135 | "description": "", 1136 | "health_category": [ 1137 | ] 1138 | }, 1139 | { 1140 | "name": "Cystic Fibrosis Gene Mutation", 1141 | "code": "", 1142 | "group": "none", 1143 | "common": "No", 1144 | "one_liner": "", 1145 | "description": "", 1146 | "health_category": [ 1147 | ] 1148 | }, 1149 | { 1150 | "name": "D-dimer", 1151 | "code": "", 1152 | "group": "none", 1153 | "common": "No", 1154 | "one_liner": "", 1155 | "description": "", 1156 | "health_category": [ 1157 | ] 1158 | }, 1159 | { 1160 | "name": "Darkfield Microscopy", 1161 | "code": "", 1162 | "group": "none", 1163 | "common": "No", 1164 | "one_liner": "", 1165 | "description": "", 1166 | "health_category": [ 1167 | ] 1168 | }, 1169 | { 1170 | "name": "Delta-aminolevulinic Acid", 1171 | "code": "", 1172 | "group": "none", 1173 | "common": "No", 1174 | "one_liner": "", 1175 | "description": "", 1176 | "health_category": [ 1177 | ] 1178 | }, 1179 | { 1180 | "name": "Depakene", 1181 | "code": "", 1182 | "group": "none", 1183 | "common": "No", 1184 | "one_liner": "", 1185 | "description": "", 1186 | "health_category": [ 1187 | ] 1188 | }, 1189 | { 1190 | "name": "DHEA", 1191 | "code": "", 1192 | "group": "none", 1193 | "common": "No", 1194 | "one_liner": "", 1195 | "description": "", 1196 | "health_category": [ 1197 | ] 1198 | }, 1199 | { 1200 | "name": "DHEAS", 1201 | "code": "", 1202 | "group": "none", 1203 | "common": "No", 1204 | "one_liner": "", 1205 | "description": "", 1206 | "health_category": [ 1207 | ] 1208 | }, 1209 | { 1210 | "name": "Digoxin", 1211 | "code": "", 1212 | "group": "none", 1213 | "common": "No", 1214 | "one_liner": "", 1215 | "description": "", 1216 | "health_category": [ 1217 | ] 1218 | }, 1219 | { 1220 | "name": "Direct Bilirubin", 1221 | "code": "", 1222 | "group": "none", 1223 | "common": "No", 1224 | "one_liner": "", 1225 | "description": "", 1226 | "health_category": [ 1227 | ] 1228 | }, 1229 | { 1230 | "name": "Direct Coomb's Test", 1231 | "code": "", 1232 | "group": "none", 1233 | "common": "No", 1234 | "one_liner": "", 1235 | "description": "", 1236 | "health_category": [ 1237 | ] 1238 | }, 1239 | { 1240 | "name": "Direct LDL", 1241 | "code": "", 1242 | "group": "none", 1243 | "common": "No", 1244 | "one_liner": "", 1245 | "description": "", 1246 | "health_category": [ 1247 | ] 1248 | }, 1249 | { 1250 | "name": "Dopamine", 1251 | "code": "", 1252 | "group": "none", 1253 | "common": "No", 1254 | "one_liner": "", 1255 | "description": "", 1256 | "health_category": [ 1257 | ] 1258 | }, 1259 | { 1260 | "name": "Drug Screen", 1261 | "code": "", 1262 | "group": "none", 1263 | "common": "No", 1264 | "one_liner": "", 1265 | "description": "", 1266 | "health_category": [ 1267 | ] 1268 | }, 1269 | { 1270 | "name": "Electrolyte Panel", 1271 | "code": "", 1272 | "group": "none", 1273 | "common": "No", 1274 | "one_liner": "", 1275 | "description": "", 1276 | "health_category": [ 1277 | ] 1278 | }, 1279 | { 1280 | "name": "Epidermal Growth Factor Receptor", 1281 | "code": "", 1282 | "group": "none", 1283 | "common": "No", 1284 | "one_liner": "", 1285 | "description": "", 1286 | "health_category": [ 1287 | ] 1288 | }, 1289 | { 1290 | "name": "Epstein-barr Virus Antibodies", 1291 | "code": "", 1292 | "group": "none", 1293 | "common": "No", 1294 | "one_liner": "", 1295 | "description": "", 1296 | "health_category": [ 1297 | ] 1298 | }, 1299 | { 1300 | "name": "Epstein-barr Virus Antibody To Early D Antigen, IgG", 1301 | "code": "", 1302 | "group": "none", 1303 | "common": "No", 1304 | "one_liner": "", 1305 | "description": "", 1306 | "health_category": [ 1307 | ] 1308 | }, 1309 | { 1310 | "name": "Epstein-barr Virus Antibody To Nuclear Antigen, IgG", 1311 | "code": "", 1312 | "group": "none", 1313 | "common": "No", 1314 | "one_liner": "", 1315 | "description": "", 1316 | "health_category": [ 1317 | ] 1318 | }, 1319 | { 1320 | "name": "Epstein-barr Virus Antibody To Viral Capsid Antigen, IgG", 1321 | "code": "", 1322 | "group": "none", 1323 | "common": "No", 1324 | "one_liner": "", 1325 | "description": "", 1326 | "health_category": [ 1327 | ] 1328 | }, 1329 | { 1330 | "name": "Epstein-barr Virus Antibody To Viral Capsid Antigen, IgM", 1331 | "code": "", 1332 | "group": "none", 1333 | "common": "No", 1334 | "one_liner": "", 1335 | "description": "", 1336 | "health_category": [ 1337 | ] 1338 | }, 1339 | { 1340 | "name": "Erythropoietin", 1341 | "code": "", 1342 | "group": "none", 1343 | "common": "No", 1344 | "one_liner": "", 1345 | "description": "", 1346 | "health_category": [ 1347 | ] 1348 | }, 1349 | { 1350 | "name": "Estimated Glomerular Filtration Rate", 1351 | "code": "", 1352 | "group": "none", 1353 | "common": "No", 1354 | "one_liner": "", 1355 | "description": "", 1356 | "health_category": [ 1357 | ] 1358 | }, 1359 | { 1360 | "name": "Estradiol", 1361 | "code": "", 1362 | "group": "none", 1363 | "common": "No", 1364 | "one_liner": "", 1365 | "description": "", 1366 | "health_category": [ 1367 | ] 1368 | }, 1369 | { 1370 | "name": "Estrogen and Progesterone Receptor Status", 1371 | "code": "", 1372 | "group": "none", 1373 | "common": "No", 1374 | "one_liner": "", 1375 | "description": "", 1376 | "health_category": [ 1377 | ] 1378 | }, 1379 | { 1380 | "name": "Estrogen Fractions", 1381 | "code": "", 1382 | "group": "none", 1383 | "common": "No", 1384 | "one_liner": "", 1385 | "description": "", 1386 | "health_category": [ 1387 | ] 1388 | }, 1389 | { 1390 | "name": "Ethanol", 1391 | "code": "", 1392 | "group": "none", 1393 | "common": "No", 1394 | "one_liner": "", 1395 | "description": "", 1396 | "health_category": [ 1397 | ] 1398 | }, 1399 | { 1400 | "name": "Factor I", 1401 | "code": "", 1402 | "group": "none", 1403 | "common": "No", 1404 | "one_liner": "", 1405 | "description": "", 1406 | "health_category": [ 1407 | ] 1408 | }, 1409 | { 1410 | "name": "Factor V Leiden", 1411 | "code": "", 1412 | "group": "none", 1413 | "common": "No", 1414 | "one_liner": "", 1415 | "description": "", 1416 | "health_category": [ 1417 | ] 1418 | }, 1419 | { 1420 | "name": "Factor V Leiden Mutation and Pt 20210 Mutation", 1421 | "code": "", 1422 | "group": "none", 1423 | "common": "No", 1424 | "one_liner": "", 1425 | "description": "", 1426 | "health_category": [ 1427 | ] 1428 | }, 1429 | { 1430 | "name": "Factor VIII", 1431 | "code": "", 1432 | "group": "none", 1433 | "common": "No", 1434 | "one_liner": "", 1435 | "description": "", 1436 | "health_category": [ 1437 | ] 1438 | }, 1439 | { 1440 | "name": "Fecal Immunochemical Test", 1441 | "code": "", 1442 | "group": "none", 1443 | "common": "No", 1444 | "one_liner": "", 1445 | "description": "", 1446 | "health_category": [ 1447 | ] 1448 | }, 1449 | { 1450 | "name": "Fecal Occult Blood Test", 1451 | "code": "", 1452 | "group": "none", 1453 | "common": "No", 1454 | "one_liner": "", 1455 | "description": "", 1456 | "health_category": [ 1457 | ] 1458 | }, 1459 | { 1460 | "name": "Ferritin, Serum", 1461 | "code": "", 1462 | "group": "none", 1463 | "common": "No", 1464 | "one_liner": "", 1465 | "description": "", 1466 | "health_category": [ 1467 | ] 1468 | }, 1469 | { 1470 | "name": "Fetal Fibronectin", 1471 | "code": "", 1472 | "group": "none", 1473 | "common": "No", 1474 | "one_liner": "", 1475 | "description": "", 1476 | "health_category": [ 1477 | ] 1478 | }, 1479 | { 1480 | "name": "Fibrin Degradation Fragment", 1481 | "code": "", 1482 | "group": "none", 1483 | "common": "No", 1484 | "one_liner": "", 1485 | "description": "", 1486 | "health_category": [ 1487 | ] 1488 | }, 1489 | { 1490 | "name": "Fibrinogen", 1491 | "code": "", 1492 | "group": "none", 1493 | "common": "No", 1494 | "one_liner": "", 1495 | "description": "", 1496 | "health_category": [ 1497 | ] 1498 | }, 1499 | { 1500 | "name": "Fifth Disease Test", 1501 | "code": "", 1502 | "group": "none", 1503 | "common": "No", 1504 | "one_liner": "", 1505 | "description": "", 1506 | "health_category": [ 1507 | ] 1508 | }, 1509 | { 1510 | "name": "First Trimester Screen", 1511 | "code": "", 1512 | "group": "none", 1513 | "common": "No", 1514 | "one_liner": "", 1515 | "description": "", 1516 | "health_category": [ 1517 | ] 1518 | }, 1519 | { 1520 | "name": "FK506", 1521 | "code": "", 1522 | "group": "none", 1523 | "common": "No", 1524 | "one_liner": "", 1525 | "description": "", 1526 | "health_category": [ 1527 | ] 1528 | }, 1529 | { 1530 | "name": "Folate", 1531 | "code": "", 1532 | "group": "none", 1533 | "common": "No", 1534 | "one_liner": "", 1535 | "description": "", 1536 | "health_category": [ 1537 | ] 1538 | }, 1539 | { 1540 | "name": "Fractionated Plasma Free Metanephrines", 1541 | "code": "", 1542 | "group": "none", 1543 | "common": "No", 1544 | "one_liner": "", 1545 | "description": "", 1546 | "health_category": [ 1547 | ] 1548 | }, 1549 | { 1550 | "name": "Fractionated Plasma Free Normetanephrines", 1551 | "code": "", 1552 | "group": "none", 1553 | "common": "No", 1554 | "one_liner": "", 1555 | "description": "", 1556 | "health_category": [ 1557 | ] 1558 | }, 1559 | { 1560 | "name": "Free Copper", 1561 | "code": "", 1562 | "group": "none", 1563 | "common": "No", 1564 | "one_liner": "", 1565 | "description": "", 1566 | "health_category": [ 1567 | ] 1568 | }, 1569 | { 1570 | "name": "Free Erythrocyte Protoporphyrin", 1571 | "code": "", 1572 | "group": "none", 1573 | "common": "No", 1574 | "one_liner": "", 1575 | "description": "", 1576 | "health_category": [ 1577 | ] 1578 | }, 1579 | { 1580 | "name": "Free PSA", 1581 | "code": "", 1582 | "group": "none", 1583 | "common": "No", 1584 | "one_liner": "", 1585 | "description": "", 1586 | "health_category": [ 1587 | ] 1588 | }, 1589 | { 1590 | "name": "Free T3", 1591 | "code": "", 1592 | "group": "none", 1593 | "common": "No", 1594 | "one_liner": "", 1595 | "description": "", 1596 | "health_category": [ 1597 | ] 1598 | }, 1599 | { 1600 | "name": "Free T4", 1601 | "code": "", 1602 | "group": "none", 1603 | "common": "No", 1604 | "one_liner": "", 1605 | "description": "", 1606 | "health_category": [ 1607 | ] 1608 | }, 1609 | { 1610 | "name": "Free Urine Catecholamines", 1611 | "code": "", 1612 | "group": "none", 1613 | "common": "No", 1614 | "one_liner": "", 1615 | "description": "", 1616 | "health_category": [ 1617 | ] 1618 | }, 1619 | { 1620 | "name": "Fructosamine", 1621 | "code": "", 1622 | "group": "none", 1623 | "common": "No", 1624 | "one_liner": "", 1625 | "description": "", 1626 | "health_category": [ 1627 | ] 1628 | }, 1629 | { 1630 | "name": "FSH", 1631 | "code": "", 1632 | "group": "none", 1633 | "common": "No", 1634 | "one_liner": "", 1635 | "description": "", 1636 | "health_category": [ 1637 | ] 1638 | }, 1639 | { 1640 | "name": "FTA-ABS", 1641 | "code": "", 1642 | "group": "none", 1643 | "common": "No", 1644 | "one_liner": "", 1645 | "description": "", 1646 | "health_category": [ 1647 | ] 1648 | }, 1649 | { 1650 | "name": "Fungal Culture", 1651 | "code": "", 1652 | "group": "none", 1653 | "common": "No", 1654 | "one_liner": "", 1655 | "description": "", 1656 | "health_category": [ 1657 | ] 1658 | }, 1659 | { 1660 | "name": "Fungal Smear", 1661 | "code": "", 1662 | "group": "none", 1663 | "common": "No", 1664 | "one_liner": "", 1665 | "description": "", 1666 | "health_category": [ 1667 | ] 1668 | }, 1669 | { 1670 | "name": "G6PD Level", 1671 | "code": "", 1672 | "group": "none", 1673 | "common": "No", 1674 | "one_liner": "", 1675 | "description": "", 1676 | "health_category": [ 1677 | ] 1678 | }, 1679 | { 1680 | "name": "G6PD Screen", 1681 | "code": "", 1682 | "group": "none", 1683 | "common": "No", 1684 | "one_liner": "", 1685 | "description": "", 1686 | "health_category": [ 1687 | ] 1688 | }, 1689 | { 1690 | "name": "GADA", 1691 | "code": "", 1692 | "group": "none", 1693 | "common": "No", 1694 | "one_liner": "", 1695 | "description": "", 1696 | "health_category": [ 1697 | "Metabolic Health" 1698 | ] 1699 | }, 1700 | { 1701 | "name": "Gastrin", 1702 | "code": "", 1703 | "group": "none", 1704 | "common": "No", 1705 | "one_liner": "", 1706 | "description": "", 1707 | "health_category": [ 1708 | ] 1709 | }, 1710 | { 1711 | "name": "GGT", 1712 | "code": "", 1713 | "group": "none", 1714 | "common": "No", 1715 | "one_liner": "", 1716 | "description": "", 1717 | "health_category": [ 1718 | "Liver Health" 1719 | ] 1720 | }, 1721 | { 1722 | "name": "Glucose", 1723 | "code": "", 1724 | "group": "none", 1725 | "common": "No", 1726 | "one_liner": "", 1727 | "description": "", 1728 | "health_category": [ 1729 | ] 1730 | }, 1731 | { 1732 | "name": "Glucose Tolerance Test", 1733 | "code": "", 1734 | "group": "none", 1735 | "common": "No", 1736 | "one_liner": "", 1737 | "description": "", 1738 | "health_category": [ 1739 | ] 1740 | }, 1741 | { 1742 | "name": "Gram Stain", 1743 | "code": "", 1744 | "group": "none", 1745 | "common": "No", 1746 | "one_liner": "", 1747 | "description": "", 1748 | "health_category": [ 1749 | ] 1750 | }, 1751 | { 1752 | "name": "GM-CSF", 1753 | "code": "", 1754 | "group": "none", 1755 | "common": "No", 1756 | "one_liner": "Granulocyte Macrophage Colony-Stimulating Factor", 1757 | "description": "", 1758 | "health_category": [ 1759 | "Immunity" 1760 | ] 1761 | }, 1762 | { 1763 | "name": "H. Pylori Antibody Test", 1764 | "code": "", 1765 | "group": "none", 1766 | "common": "No", 1767 | "one_liner": "", 1768 | "description": "", 1769 | "health_category": [ 1770 | ] 1771 | }, 1772 | { 1773 | "name": "H. Pylori Antigen Test", 1774 | "code": "", 1775 | "group": "none", 1776 | "common": "No", 1777 | "one_liner": "", 1778 | "description": "", 1779 | "health_category": [ 1780 | ] 1781 | }, 1782 | { 1783 | "name": "H. Pylori Breath Test", 1784 | "code": "", 1785 | "group": "none", 1786 | "common": "No", 1787 | "one_liner": "", 1788 | "description": "", 1789 | "health_category": [ 1790 | ] 1791 | }, 1792 | { 1793 | "name": "Haptoglobin", 1794 | "code": "", 1795 | "group": "none", 1796 | "common": "No", 1797 | "one_liner": "", 1798 | "description": "", 1799 | "health_category": [ 1800 | ] 1801 | }, 1802 | { 1803 | "name": "HAV IgG", 1804 | "code": "", 1805 | "group": "none", 1806 | "common": "No", 1807 | "one_liner": "", 1808 | "description": "", 1809 | "health_category": [ 1810 | ] 1811 | }, 1812 | { 1813 | "name": "HAV IgM", 1814 | "code": "", 1815 | "group": "none", 1816 | "common": "No", 1817 | "one_liner": "", 1818 | "description": "", 1819 | "health_category": [ 1820 | ] 1821 | }, 1822 | { 1823 | "name": "HAV Total", 1824 | "code": "", 1825 | "group": "none", 1826 | "common": "No", 1827 | "one_liner": "", 1828 | "description": "", 1829 | "health_category": [ 1830 | ] 1831 | }, 1832 | { 1833 | "name": "HBEAG", 1834 | "code": "", 1835 | "group": "none", 1836 | "common": "No", 1837 | "one_liner": "Hepatitis B e Antigen", 1838 | "description": "", 1839 | "health_category": [ 1840 | ] 1841 | }, 1842 | { 1843 | "name": "HBSAG", 1844 | "code": "", 1845 | "group": "none", 1846 | "common": "No", 1847 | "one_liner": "Hepatitis B Surface Antigen", 1848 | "description": "", 1849 | "health_category": [ 1850 | ] 1851 | }, 1852 | { 1853 | "name": "HBV DNA", 1854 | "code": "", 1855 | "group": "none", 1856 | "common": "No", 1857 | "one_liner": "", 1858 | "description": "", 1859 | "health_category": [ 1860 | ] 1861 | }, 1862 | { 1863 | "name": "HCG", 1864 | "code": "", 1865 | "group": "none", 1866 | "common": "No", 1867 | "one_liner": "Pregnancy Hormone", 1868 | "description": "", 1869 | "health_category": [ 1870 | ] 1871 | }, 1872 | { 1873 | "name": "HCV Antibody", 1874 | "code": "", 1875 | "group": "none", 1876 | "common": "No", 1877 | "one_liner": "", 1878 | "description": "", 1879 | "health_category": [ 1880 | ] 1881 | }, 1882 | { 1883 | "name": "HCV RIBA", 1884 | "code": "", 1885 | "group": "none", 1886 | "common": "No", 1887 | "one_liner": "", 1888 | "description": "", 1889 | "health_category": [ 1890 | ] 1891 | }, 1892 | { 1893 | "name": "Heavy Metals Panel", 1894 | "code": "", 1895 | "group": "none", 1896 | "common": "No", 1897 | "one_liner": "", 1898 | "description": "", 1899 | "health_category": [ 1900 | ] 1901 | }, 1902 | { 1903 | "name": "Hematocrit", 1904 | "code": "", 1905 | "group": "none", 1906 | "common": "No", 1907 | "one_liner": "Packed-Cell Volume Test", 1908 | "description": "Measures the proportion of red blood cells in blood.", 1909 | "health_category": [ 1910 | "Blood Health" 1911 | ] 1912 | }, 1913 | { 1914 | "name": "Hemoblobin", 1915 | "code": "", 1916 | "group": "none", 1917 | "common": "No", 1918 | "one_liner": "", 1919 | "description": "", 1920 | "health_category": [ 1921 | "Blood Health" 1922 | ] 1923 | }, 1924 | { 1925 | "name": "Hemoglobin S", 1926 | "code": "", 1927 | "group": "none", 1928 | "common": "No", 1929 | "one_liner": "", 1930 | "description": "", 1931 | "health_category": [ 1932 | "Blood Health" 1933 | ] 1934 | }, 1935 | { 1936 | "name": "Heparin Anti-xa", 1937 | "code": "", 1938 | "group": "none", 1939 | "common": "No", 1940 | "one_liner": "", 1941 | "description": "", 1942 | "health_category": [ 1943 | ] 1944 | }, 1945 | { 1946 | "name": "Heparin Level", 1947 | "code": "", 1948 | "group": "none", 1949 | "common": "No", 1950 | "one_liner": "", 1951 | "description": "", 1952 | "health_category": [ 1953 | ] 1954 | }, 1955 | { 1956 | "name": "Hepatitis B Core Total ABS", 1957 | "code": "", 1958 | "group": "none", 1959 | "common": "No", 1960 | "one_liner": "", 1961 | "description": "", 1962 | "health_category": [ 1963 | ] 1964 | }, 1965 | { 1966 | "name": "Hepatitis B Surface Antibody", 1967 | "code": "", 1968 | "group": "none", 1969 | "common": "No", 1970 | "one_liner": "", 1971 | "description": "", 1972 | "health_category": [ 1973 | ] 1974 | }, 1975 | { 1976 | "name": "Hepatitis C Antibody", 1977 | "code": "", 1978 | "group": "none", 1979 | "common": "No", 1980 | "one_liner": "", 1981 | "description": "", 1982 | "health_category": [ 1983 | ] 1984 | }, 1985 | { 1986 | "name": "Her-2/neu", 1987 | "code": "", 1988 | "group": "none", 1989 | "common": "No", 1990 | "one_liner": "", 1991 | "description": "", 1992 | "health_category": [ 1993 | ] 1994 | }, 1995 | { 1996 | "name": "HGH", 1997 | "code": "", 1998 | "group": "none", 1999 | "common": "No", 2000 | "one_liner": "Human Growth Hormone", 2001 | "description": "", 2002 | "health_category": [ 2003 | ] 2004 | }, 2005 | { 2006 | "name": "Histone Antibody", 2007 | "code": "", 2008 | "group": "none", 2009 | "common": "No", 2010 | "one_liner": "", 2011 | "description": "", 2012 | "health_category": [ 2013 | "Immunity" 2014 | ] 2015 | }, 2016 | { 2017 | "name": "HIV Antibody Test", 2018 | "code": "", 2019 | "group": "none", 2020 | "common": "No", 2021 | "one_liner": "", 2022 | "description": "", 2023 | "health_category": [ 2024 | ] 2025 | }, 2026 | { 2027 | "name": "HIV Genotype", 2028 | "code": "", 2029 | "group": "none", 2030 | "common": "No", 2031 | "one_liner": "", 2032 | "description": "", 2033 | "health_category": [ 2034 | ] 2035 | }, 2036 | { 2037 | "name": "HIV PCR", 2038 | "code": "", 2039 | "group": "none", 2040 | "common": "No", 2041 | "one_liner": "", 2042 | "description": "", 2043 | "health_category": [ 2044 | ] 2045 | }, 2046 | { 2047 | "name": "HIV Viral Load", 2048 | "code": "", 2049 | "group": "none", 2050 | "common": "No", 2051 | "one_liner": "", 2052 | "description": "", 2053 | "health_category": [ 2054 | ] 2055 | }, 2056 | { 2057 | "name": "HLA B27", 2058 | "code": "", 2059 | "group": "none", 2060 | "common": "No", 2061 | "one_liner": "", 2062 | "description": "", 2063 | "health_category": [ 2064 | "Immunity" 2065 | ] 2066 | }, 2067 | { 2068 | "name": "Homocysteine", 2069 | "code": "", 2070 | "group": "none", 2071 | "common": "No", 2072 | "one_liner": "", 2073 | "description": "", 2074 | "health_category": [ 2075 | ] 2076 | }, 2077 | { 2078 | "name": "HPV DNA", 2079 | "code": "", 2080 | "group": "none", 2081 | "common": "No", 2082 | "one_liner": "", 2083 | "description": "", 2084 | "health_category": [ 2085 | ] 2086 | }, 2087 | { 2088 | "name": "hs-CRP", 2089 | "code": "", 2090 | "group": "none", 2091 | "common": "No", 2092 | "one_liner": "High Sensitivity C-Reactive Protein", 2093 | "description": "", 2094 | "health_category": [ 2095 | "Cardiovascular Health" 2096 | ] 2097 | }, 2098 | { 2099 | "name": "HSV DNA", 2100 | "code": "", 2101 | "group": "none", 2102 | "common": "No", 2103 | "one_liner": "Herpes DNA", 2104 | "description": "", 2105 | "health_category": [ 2106 | ] 2107 | }, 2108 | { 2109 | "name": "HSV PCR", 2110 | "code": "", 2111 | "group": "none", 2112 | "common": "No", 2113 | "one_liner": "Herpes PCR", 2114 | "description": "", 2115 | "health_category": [ 2116 | ] 2117 | }, 2118 | { 2119 | "name": "HSV Viral Culture", 2120 | "code": "", 2121 | "group": "none", 2122 | "common": "No", 2123 | "one_liner": "Herpes Viral Culture", 2124 | "description": "", 2125 | "health_category": [ 2126 | ] 2127 | }, 2128 | { 2129 | "name": "HSV Virus, Type1 and Type 2", 2130 | "code": "", 2131 | "group": "none", 2132 | "common": "No", 2133 | "one_liner": "Herpes", 2134 | "description": "", 2135 | "health_category": [ 2136 | ] 2137 | }, 2138 | { 2139 | "name": "HSV-1", 2140 | "code": "", 2141 | "group": "none", 2142 | "common": "No", 2143 | "one_liner": "Herpes Type 1", 2144 | "description": "", 2145 | "health_category": [ 2146 | ] 2147 | }, 2148 | { 2149 | "name": "HSV-2", 2150 | "code": "", 2151 | "group": "none", 2152 | "common": "No", 2153 | "one_liner": "Herpes Type 2", 2154 | "description": "", 2155 | "health_category": [ 2156 | ] 2157 | }, 2158 | { 2159 | "name": "Indirect Coomb's Test", 2160 | "code": "", 2161 | "group": "none", 2162 | "common": "No", 2163 | "one_liner": "", 2164 | "description": "", 2165 | "health_category": [ 2166 | ] 2167 | }, 2168 | { 2169 | "name": "Influenza Antigen Test", 2170 | "code": "", 2171 | "group": "none", 2172 | "common": "No", 2173 | "one_liner": "", 2174 | "description": "", 2175 | "health_category": [ 2176 | ] 2177 | }, 2178 | { 2179 | "name": "Insulin", 2180 | "code": "", 2181 | "group": "none", 2182 | "common": "No", 2183 | "one_liner": "", 2184 | "description": "", 2185 | "health_category": [ 2186 | ] 2187 | }, 2188 | { 2189 | "name": "Insulin-like Growth Factor - 1", 2190 | "code": "", 2191 | "group": "none", 2192 | "common": "No", 2193 | "one_liner": "", 2194 | "description": "", 2195 | "health_category": [ 2196 | ] 2197 | }, 2198 | { 2199 | "name": "Intact PTH", 2200 | "code": "", 2201 | "group": "none", 2202 | "common": "No", 2203 | "one_liner": "", 2204 | "description": "", 2205 | "health_category": [ 2206 | ] 2207 | }, 2208 | { 2209 | "name": "Interferon Gamma", 2210 | "code": "", 2211 | "group": "none", 2212 | "common": "No", 2213 | "one_liner": "", 2214 | "description": "", 2215 | "health_category": [ 2216 | ] 2217 | }, 2218 | { 2219 | "name": "Interleukin Panel", 2220 | "code": "", 2221 | "group": "none", 2222 | "common": "No", 2223 | "one_liner": "", 2224 | "description": "", 2225 | "health_category": [ 2226 | "Immunity" 2227 | ] 2228 | }, 2229 | { 2230 | "name": "Ionized Calcium", 2231 | "code": "", 2232 | "group": "none", 2233 | "common": "No", 2234 | "one_liner": "", 2235 | "description": "", 2236 | "health_category": [ 2237 | "Vitamins and Minerals" 2238 | ] 2239 | }, 2240 | { 2241 | "name": "Iron, Serum", 2242 | "code": "", 2243 | "group": "none", 2244 | "common": "No", 2245 | "one_liner": "", 2246 | "description": "", 2247 | "health_category": [ 2248 | "Vitamins and Minerals" 2249 | ] 2250 | }, 2251 | { 2252 | "name": "Islet Cell Cytoplasmic Autoantibodies", 2253 | "code": "", 2254 | "group": "none", 2255 | "common": "No", 2256 | "one_liner": "", 2257 | "description": "", 2258 | "health_category": [ 2259 | ] 2260 | }, 2261 | { 2262 | "name": "Jak2 Exon 12 and 13", 2263 | "code": "", 2264 | "group": "none", 2265 | "common": "No", 2266 | "one_liner": "", 2267 | "description": "", 2268 | "health_category": [ 2269 | ] 2270 | }, 2271 | { 2272 | "name": "Jak2 V617f", 2273 | "code": "", 2274 | "group": "none", 2275 | "common": "No", 2276 | "one_liner": "", 2277 | "description": "", 2278 | "health_category": [ 2279 | ] 2280 | }, 2281 | { 2282 | "name": "Jo-1 Antibody", 2283 | "code": "", 2284 | "group": "none", 2285 | "common": "No", 2286 | "one_liner": "", 2287 | "description": "", 2288 | "health_category": [ 2289 | "Bone and Muscle Health", 2290 | "Immunity" 2291 | ] 2292 | }, 2293 | { 2294 | "name": "Joint Fluid Analysis", 2295 | "code": "", 2296 | "group": "none", 2297 | "common": "No", 2298 | "one_liner": "", 2299 | "description": "", 2300 | "health_category": [ 2301 | ] 2302 | }, 2303 | { 2304 | "name": "Ketones, Blood", 2305 | "code": "", 2306 | "group": "none", 2307 | "common": "No", 2308 | "one_liner": "", 2309 | "description": "", 2310 | "health_category": [ 2311 | ] 2312 | }, 2313 | { 2314 | "name": "KOH Prep", 2315 | "code": "", 2316 | "group": "none", 2317 | "common": "No", 2318 | "one_liner": "", 2319 | "description": "", 2320 | "health_category": [ 2321 | ] 2322 | }, 2323 | { 2324 | "name": "Lactic Acid", 2325 | "code": "", 2326 | "group": "none", 2327 | "common": "No", 2328 | "one_liner": "", 2329 | "description": "", 2330 | "health_category": [ 2331 | ] 2332 | }, 2333 | { 2334 | "name": "LDH", 2335 | "code": "", 2336 | "group": "none", 2337 | "common": "No", 2338 | "one_liner": "", 2339 | "description": "", 2340 | "health_category": [ 2341 | ] 2342 | }, 2343 | { 2344 | "name": "LDH Isoenzymes", 2345 | "code": "", 2346 | "group": "none", 2347 | "common": "No", 2348 | "one_liner": "", 2349 | "description": "", 2350 | "health_category": [ 2351 | ] 2352 | }, 2353 | { 2354 | "name": "LDL", 2355 | "code": "", 2356 | "group": "none", 2357 | "common": "No", 2358 | "one_liner": "", 2359 | "description": "", 2360 | "health_category": [ 2361 | ] 2362 | }, 2363 | { 2364 | "name": "LDL Subclasses", 2365 | "code": "", 2366 | "group": "none", 2367 | "common": "No", 2368 | "one_liner": "", 2369 | "description": "", 2370 | "health_category": [ 2371 | ] 2372 | }, 2373 | { 2374 | "name": "Lead, Blood", 2375 | "code": "", 2376 | "group": "none", 2377 | "common": "No", 2378 | "one_liner": "", 2379 | "description": "", 2380 | "health_category": [ 2381 | ] 2382 | }, 2383 | { 2384 | "name": "LH", 2385 | "code": "", 2386 | "group": "none", 2387 | "common": "No", 2388 | "one_liner": "Luteinizing Hormone", 2389 | "description": "", 2390 | "health_category": [ 2391 | ] 2392 | }, 2393 | { 2394 | "name": "Lipase", 2395 | "code": "", 2396 | "group": "none", 2397 | "common": "No", 2398 | "one_liner": "", 2399 | "description": "", 2400 | "health_category": [ 2401 | ] 2402 | }, 2403 | { 2404 | "name": "Lipid Panel", 2405 | "code": "", 2406 | "group": "none", 2407 | "common": "No", 2408 | "one_liner": "", 2409 | "description": "", 2410 | "health_category": [ 2411 | "Lipids / Heart Health" 2412 | ] 2413 | }, 2414 | { 2415 | "name": "Lipoprotein Subfractions", 2416 | "code": "", 2417 | "group": "none", 2418 | "common": "No", 2419 | "one_liner": "", 2420 | "description": "", 2421 | "health_category": [ 2422 | ] 2423 | }, 2424 | { 2425 | "name": "Lithium", 2426 | "code": "", 2427 | "group": "none", 2428 | "common": "No", 2429 | "one_liner": "", 2430 | "description": "", 2431 | "health_category": [ 2432 | "Vitamins and Minerals" 2433 | ] 2434 | }, 2435 | { 2436 | "name": "Liver Panel", 2437 | "code": "", 2438 | "group": "none", 2439 | "common": "No", 2440 | "one_liner": "", 2441 | "description": "", 2442 | "health_category": [ 2443 | "Liver Health" 2444 | ] 2445 | }, 2446 | { 2447 | "name": "Lp(a)", 2448 | "code": "", 2449 | "group": "none", 2450 | "common": "No", 2451 | "one_liner": "Lipoprotein (a)", 2452 | "description": "", 2453 | "health_category": [ 2454 | "Cardiovascular Health" 2455 | ] 2456 | }, 2457 | { 2458 | "name": "Lupus dsDNA", 2459 | "code": "", 2460 | "group": "none", 2461 | "common": "No", 2462 | "one_liner": "Lupus Anti-Double Stranded DNA", 2463 | "description": "", 2464 | "health_category": [ 2465 | ] 2466 | }, 2467 | { 2468 | "name": "Lupus Anticoagulant", 2469 | "code": "", 2470 | "group": "none", 2471 | "common": "No", 2472 | "one_liner": "", 2473 | "description": "", 2474 | "health_category": [ 2475 | ] 2476 | }, 2477 | { 2478 | "name": "Lyme Antibodies, IgM/IgG", 2479 | "code": "", 2480 | "group": "none", 2481 | "common": "No", 2482 | "one_liner": "", 2483 | "description": "", 2484 | "health_category": [ 2485 | ] 2486 | }, 2487 | { 2488 | "name": "Lyme Disease PCR", 2489 | "code": "", 2490 | "group": "none", 2491 | "common": "No", 2492 | "one_liner": "", 2493 | "description": "", 2494 | "health_category": [ 2495 | ] 2496 | }, 2497 | { 2498 | "name": "Lyme DNA Detection PCR", 2499 | "code": "", 2500 | "group": "none", 2501 | "common": "No", 2502 | "one_liner": "", 2503 | "description": "", 2504 | "health_category": [ 2505 | ] 2506 | }, 2507 | { 2508 | "name": "Magnesium", 2509 | "code": "", 2510 | "group": "none", 2511 | "common": "No", 2512 | "one_liner": "", 2513 | "description": "", 2514 | "health_category": [ 2515 | "Vitamins and Minerals" 2516 | ] 2517 | }, 2518 | { 2519 | "name": "Manual Differential", 2520 | "code": "", 2521 | "group": "none", 2522 | "common": "No", 2523 | "one_liner": "", 2524 | "description": "", 2525 | "health_category": [ 2526 | ] 2527 | }, 2528 | { 2529 | "name": "Mean Platelet Volume", 2530 | "code": "", 2531 | "group": "none", 2532 | "common": "No", 2533 | "one_liner": "", 2534 | "description": "", 2535 | "health_category": [ 2536 | "Blood Health" 2537 | ] 2538 | }, 2539 | { 2540 | "name": "Mercury", 2541 | "code": "", 2542 | "group": "none", 2543 | "common": "No", 2544 | "one_liner": "", 2545 | "description": "", 2546 | "health_category": [ 2547 | ] 2548 | }, 2549 | { 2550 | "name": "Methylmalonic Acid", 2551 | "code": "", 2552 | "group": "none", 2553 | "common": "No", 2554 | "one_liner": "", 2555 | "description": "", 2556 | "health_category": [ 2557 | ] 2558 | }, 2559 | { 2560 | "name": "MHA-TP", 2561 | "code": "", 2562 | "group": "none", 2563 | "common": "No", 2564 | "one_liner": "Syphilis Treponemal Antibody", 2565 | "description": "", 2566 | "health_category": [ 2567 | "Immunity" 2568 | ] 2569 | }, 2570 | { 2571 | "name": "Mitochondrial Antibody", 2572 | "code": "", 2573 | "group": "none", 2574 | "common": "No", 2575 | "one_liner": "", 2576 | "description": "", 2577 | "health_category": [ 2578 | "Metabolic Health" 2579 | ] 2580 | }, 2581 | { 2582 | "name": "Mono Test", 2583 | "code": "", 2584 | "group": "none", 2585 | "common": "No", 2586 | "one_liner": "", 2587 | "description": "", 2588 | "health_category": [ 2589 | ] 2590 | }, 2591 | { 2592 | "name": "MRSA Screen", 2593 | "code": "", 2594 | "group": "none", 2595 | "common": "No", 2596 | "one_liner": "", 2597 | "description": "", 2598 | "health_category": [ 2599 | ] 2600 | }, 2601 | { 2602 | "name": "Mycophenolic Acid", 2603 | "code": "", 2604 | "group": "none", 2605 | "common": "No", 2606 | "one_liner": "", 2607 | "description": "", 2608 | "health_category": [ 2609 | ] 2610 | }, 2611 | { 2612 | "name": "Mycoplasma Pneumoniae Culture", 2613 | "code": "", 2614 | "group": "none", 2615 | "common": "No", 2616 | "one_liner": "", 2617 | "description": "", 2618 | "health_category": [ 2619 | ] 2620 | }, 2621 | { 2622 | "name": "Mycoplasma Pneumoniae IgG and IgM Antibodies", 2623 | "code": "", 2624 | "group": "none", 2625 | "common": "No", 2626 | "one_liner": "", 2627 | "description": "", 2628 | "health_category": [ 2629 | ] 2630 | }, 2631 | { 2632 | "name": "Mycoplasma Pneumoniae PCR", 2633 | "code": "", 2634 | "group": "none", 2635 | "common": "No", 2636 | "one_liner": "", 2637 | "description": "", 2638 | "health_category": [ 2639 | ] 2640 | }, 2641 | { 2642 | "name": "Myoglobin", 2643 | "code": "", 2644 | "group": "none", 2645 | "common": "No", 2646 | "one_liner": "", 2647 | "description": "", 2648 | "health_category": [ 2649 | ] 2650 | }, 2651 | { 2652 | "name": "Neonatal Bilirubin", 2653 | "code": "", 2654 | "group": "none", 2655 | "common": "No", 2656 | "one_liner": "", 2657 | "description": "", 2658 | "health_category": [ 2659 | ] 2660 | }, 2661 | { 2662 | "name": "Neutrophils", 2663 | "code": "", 2664 | "group": "none", 2665 | "common": "No", 2666 | "one_liner": "", 2667 | "description": "", 2668 | "health_category": [ 2669 | "Immunity" 2670 | ] 2671 | }, 2672 | { 2673 | "name": "Neutrophils, Band", 2674 | "code": "", 2675 | "group": "none", 2676 | "common": "No", 2677 | "one_liner": "", 2678 | "description": "", 2679 | "health_category": [ 2680 | "Immunity" 2681 | ] 2682 | }, 2683 | { 2684 | "name": "Nicotine / Cotinine", 2685 | "code": "", 2686 | "group": "none", 2687 | "common": "No", 2688 | "one_liner": "", 2689 | "description": "", 2690 | "health_category": [ 2691 | ] 2692 | }, 2693 | { 2694 | "name": "Norepinephrine", 2695 | "code": "", 2696 | "group": "none", 2697 | "common": "No", 2698 | "one_liner": "", 2699 | "description": "", 2700 | "health_category": [ 2701 | ] 2702 | }, 2703 | { 2704 | "name": "Nucleated RBC", 2705 | "code": "", 2706 | "group": "none", 2707 | "common": "No", 2708 | "one_liner": "Nucleated Red Blood Cell Count", 2709 | "description": "", 2710 | "health_category": [ 2711 | ] 2712 | }, 2713 | { 2714 | "name": "Omega-3", 2715 | "code": "", 2716 | "group": "none", 2717 | "common": "No", 2718 | "one_liner": "", 2719 | "description": "", 2720 | "health_category": [ 2721 | "Vitamins and Minerals" 2722 | ] 2723 | }, 2724 | { 2725 | "name": "Omega-6/Omega-3 Ratio", 2726 | "code": "", 2727 | "group": "none", 2728 | "common": "No", 2729 | "one_liner": "", 2730 | "description": "", 2731 | "health_category": [ 2732 | "Vitamins and Minerals" 2733 | ] 2734 | }, 2735 | { 2736 | "name": "on Willebrand Factor Ag", 2737 | "code": "", 2738 | "group": "none", 2739 | "common": "No", 2740 | "one_liner": "", 2741 | "description": "", 2742 | "health_category": [ 2743 | ] 2744 | }, 2745 | { 2746 | "name": "Osmolality", 2747 | "code": "", 2748 | "group": "none", 2749 | "common": "No", 2750 | "one_liner": "", 2751 | "description": "", 2752 | "health_category": [ 2753 | ] 2754 | }, 2755 | { 2756 | "name": "Ova and Parasite Exam", 2757 | "code": "", 2758 | "group": "none", 2759 | "common": "No", 2760 | "one_liner": "", 2761 | "description": "", 2762 | "health_category": [ 2763 | ] 2764 | }, 2765 | { 2766 | "name": "P24 Antigen", 2767 | "code": "", 2768 | "group": "none", 2769 | "common": "No", 2770 | "one_liner": "", 2771 | "description": "", 2772 | "health_category": [ 2773 | ] 2774 | }, 2775 | { 2776 | "name": "Pap Smear", 2777 | "code": "", 2778 | "group": "none", 2779 | "common": "Yes", 2780 | "one_liner": "", 2781 | "description": "", 2782 | "health_category": [ 2783 | ] 2784 | }, 2785 | { 2786 | "name": "Parvovirus B19", 2787 | "code": "", 2788 | "group": "none", 2789 | "common": "No", 2790 | "one_liner": "", 2791 | "description": "", 2792 | "health_category": [ 2793 | ] 2794 | }, 2795 | { 2796 | "name": "Pericardial Fluid Analysis", 2797 | "code": "", 2798 | "group": "none", 2799 | "common": "No", 2800 | "one_liner": "", 2801 | "description": "", 2802 | "health_category": [ 2803 | ] 2804 | }, 2805 | { 2806 | "name": "Peripheral Blood Smear", 2807 | "code": "", 2808 | "group": "none", 2809 | "common": "No", 2810 | "one_liner": "", 2811 | "description": "", 2812 | "health_category": [ 2813 | ] 2814 | }, 2815 | { 2816 | "name": "Peritoneal Fluid Analysis", 2817 | "code": "", 2818 | "group": "none", 2819 | "common": "No", 2820 | "one_liner": "", 2821 | "description": "", 2822 | "health_category": [ 2823 | ] 2824 | }, 2825 | { 2826 | "name": "Phenobarbital", 2827 | "code": "", 2828 | "group": "none", 2829 | "common": "No", 2830 | "one_liner": "", 2831 | "description": "", 2832 | "health_category": [ 2833 | ] 2834 | }, 2835 | { 2836 | "name": "Phenytoin", 2837 | "code": "", 2838 | "group": "none", 2839 | "common": "No", 2840 | "one_liner": "", 2841 | "description": "", 2842 | "health_category": [ 2843 | ] 2844 | }, 2845 | { 2846 | "name": "Phenytoin, Total and Free", 2847 | "code": "", 2848 | "group": "none", 2849 | "common": "No", 2850 | "one_liner": "", 2851 | "description": "", 2852 | "health_category": [ 2853 | ] 2854 | }, 2855 | { 2856 | "name": "Phosphorus", 2857 | "code": "", 2858 | "group": "none", 2859 | "common": "No", 2860 | "one_liner": "", 2861 | "description": "", 2862 | "health_category": [ 2863 | "Vitamins and Minerals" 2864 | ] 2865 | }, 2866 | { 2867 | "name": "Platelet Aggregation Studies", 2868 | "code": "", 2869 | "group": "none", 2870 | "common": "No", 2871 | "one_liner": "", 2872 | "description": "", 2873 | "health_category": [ 2874 | ] 2875 | }, 2876 | { 2877 | "name": "Platelet Count", 2878 | "code": "", 2879 | "group": "none", 2880 | "common": "No", 2881 | "one_liner": "", 2882 | "description": "", 2883 | "health_category": [ 2884 | ] 2885 | }, 2886 | { 2887 | "name": "Pleural Fluid Analysis", 2888 | "code": "", 2889 | "group": "none", 2890 | "common": "No", 2891 | "one_liner": "", 2892 | "description": "", 2893 | "health_category": [ 2894 | ] 2895 | }, 2896 | { 2897 | "name": "Porphobilinogen", 2898 | "code": "", 2899 | "group": "none", 2900 | "common": "No", 2901 | "one_liner": "", 2902 | "description": "", 2903 | "health_category": [ 2904 | ] 2905 | }, 2906 | { 2907 | "name": "Porphyrins", 2908 | "code": "", 2909 | "group": "none", 2910 | "common": "No", 2911 | "one_liner": "", 2912 | "description": "", 2913 | "health_category": [ 2914 | ] 2915 | }, 2916 | { 2917 | "name": "Potassium", 2918 | "code": "", 2919 | "group": "none", 2920 | "common": "No", 2921 | "one_liner": "", 2922 | "description": "", 2923 | "health_category": [ 2924 | "Vitamins and Minerals" 2925 | ] 2926 | }, 2927 | { 2928 | "name": "Pregnancy Test", 2929 | "code": "", 2930 | "group": "none", 2931 | "common": "Yes", 2932 | "one_liner": "", 2933 | "description": "", 2934 | "health_category": [ 2935 | ] 2936 | }, 2937 | { 2938 | "name": "Procalcitonin", 2939 | "code": "", 2940 | "group": "none", 2941 | "common": "No", 2942 | "one_liner": "", 2943 | "description": "", 2944 | "health_category": [ 2945 | ] 2946 | }, 2947 | { 2948 | "name": "Progesterone", 2949 | "code": "", 2950 | "group": "none", 2951 | "common": "No", 2952 | "one_liner": "", 2953 | "description": "", 2954 | "health_category": [ 2955 | ] 2956 | }, 2957 | { 2958 | "name": "Prolactin", 2959 | "code": "", 2960 | "group": "none", 2961 | "common": "No", 2962 | "one_liner": "", 2963 | "description": "", 2964 | "health_category": [ 2965 | ] 2966 | }, 2967 | { 2968 | "name": "Protein C Activity", 2969 | "code": "", 2970 | "group": "none", 2971 | "common": "No", 2972 | "one_liner": "", 2973 | "description": "", 2974 | "health_category": [ 2975 | ] 2976 | }, 2977 | { 2978 | "name": "Protein C Antigen", 2979 | "code": "", 2980 | "group": "none", 2981 | "common": "No", 2982 | "one_liner": "", 2983 | "description": "", 2984 | "health_category": [ 2985 | ] 2986 | }, 2987 | { 2988 | "name": "Protein Electrophoresis", 2989 | "code": "", 2990 | "group": "none", 2991 | "common": "No", 2992 | "one_liner": "", 2993 | "description": "", 2994 | "health_category": [ 2995 | ] 2996 | }, 2997 | { 2998 | "name": "Protein S", 2999 | "code": "", 3000 | "group": "none", 3001 | "common": "No", 3002 | "one_liner": "", 3003 | "description": "", 3004 | "health_category": [ 3005 | ] 3006 | }, 3007 | { 3008 | "name": "PSA", 3009 | "code": "", 3010 | "group": "none", 3011 | "common": "No", 3012 | "one_liner": "Prostate-Specific Antigen", 3013 | "description": "", 3014 | "health_category": [ 3015 | ] 3016 | }, 3017 | { 3018 | "name": "PT and INR", 3019 | "code": "", 3020 | "group": "none", 3021 | "common": "No", 3022 | "one_liner": "", 3023 | "description": "", 3024 | "health_category": [ 3025 | ] 3026 | }, 3027 | { 3028 | "name": "PTH", 3029 | "code": "", 3030 | "group": "none", 3031 | "common": "No", 3032 | "one_liner": "Parathyroid Hormone Calcium Modulator", 3033 | "description": "", 3034 | "health_category": [ 3035 | "Metabolic Health" 3036 | ] 3037 | }, 3038 | { 3039 | "name": "Quadruple Maternal Marker Screen", 3040 | "code": "", 3041 | "group": "none", 3042 | "common": "No", 3043 | "one_liner": "", 3044 | "description": "", 3045 | "health_category": [ 3046 | ] 3047 | }, 3048 | { 3049 | "name": "Quantiferon TB", 3050 | "code": "", 3051 | "group": "none", 3052 | "common": "No", 3053 | "one_liner": "Tuberculosis Assay", 3054 | "description": "", 3055 | "health_category": [ 3056 | ] 3057 | }, 3058 | { 3059 | "name": "Rapid Flu Test", 3060 | "code": "", 3061 | "group": "none", 3062 | "common": "No", 3063 | "one_liner": "", 3064 | "description": "", 3065 | "health_category": [ 3066 | ] 3067 | }, 3068 | { 3069 | "name": "Rapid Strep Test", 3070 | "code": "", 3071 | "group": "none", 3072 | "common": "No", 3073 | "one_liner": "", 3074 | "description": "", 3075 | "health_category": [ 3076 | ] 3077 | }, 3078 | { 3079 | "name": "Rapid Urease Test For H. Pylori", 3080 | "code": "", 3081 | "group": "none", 3082 | "common": "No", 3083 | "one_liner": "", 3084 | "description": "", 3085 | "health_category": [ 3086 | ] 3087 | }, 3088 | { 3089 | "name": "RAST Test", 3090 | "code": "", 3091 | "group": "none", 3092 | "common": "No", 3093 | "one_liner": "Radioallergosorbent Allergy Test", 3094 | "description": "", 3095 | "health_category": [ 3096 | "Immunity" 3097 | ] 3098 | }, 3099 | { 3100 | "name": "Renin", 3101 | "code": "", 3102 | "group": "none", 3103 | "common": "No", 3104 | "one_liner": "", 3105 | "description": "", 3106 | "health_category": [ 3107 | ] 3108 | }, 3109 | { 3110 | "name": "Reticulocyte Count", 3111 | "code": "", 3112 | "group": "none", 3113 | "common": "No", 3114 | "one_liner": "", 3115 | "description": "", 3116 | "health_category": [ 3117 | ] 3118 | }, 3119 | { 3120 | "name": "Rheumatoid Factor", 3121 | "code": "", 3122 | "group": "none", 3123 | "common": "No", 3124 | "one_liner": "", 3125 | "description": "", 3126 | "health_category": [ 3127 | ] 3128 | }, 3129 | { 3130 | "name": "Ristocetin Cofactor", 3131 | "code": "", 3132 | "group": "none", 3133 | "common": "No", 3134 | "one_liner": "", 3135 | "description": "", 3136 | "health_category": [ 3137 | ] 3138 | }, 3139 | { 3140 | "name": "RNP Antibody", 3141 | "code": "", 3142 | "group": "none", 3143 | "common": "No", 3144 | "one_liner": "Connective Tissue Disease Marker", 3145 | "description": "", 3146 | "health_category": [ 3147 | ] 3148 | }, 3149 | { 3150 | "name": "RPR", 3151 | "code": "", 3152 | "group": "none", 3153 | "common": "No", 3154 | "one_liner": "Rapid Plasma Reagin Syphilis Antibody", 3155 | "description": "", 3156 | "health_category": [ 3157 | ] 3158 | }, 3159 | { 3160 | "name": "RSV DFA", 3161 | "code": "", 3162 | "group": "none", 3163 | "common": "No", 3164 | "one_liner": "Respiratory Syncytial Virus Antibody", 3165 | "description": "", 3166 | "health_category": [ 3167 | ] 3168 | }, 3169 | { 3170 | "name": "Rubella", 3171 | "code": "", 3172 | "group": "none", 3173 | "common": "No", 3174 | "one_liner": "", 3175 | "description": "", 3176 | "health_category": [ 3177 | ] 3178 | }, 3179 | { 3180 | "name": "Rubella Antibodies, IgM and IgG", 3181 | "code": "", 3182 | "group": "none", 3183 | "common": "No", 3184 | "one_liner": "", 3185 | "description": "", 3186 | "health_category": [ 3187 | ] 3188 | }, 3189 | { 3190 | "name": "Rubeola", 3191 | "code": "", 3192 | "group": "none", 3193 | "common": "No", 3194 | "one_liner": "", 3195 | "description": "", 3196 | "health_category": [ 3197 | ] 3198 | }, 3199 | { 3200 | "name": "Sars-Cov-2 Antibody, Nucleocapsid", 3201 | "code": "", 3202 | "group": "none", 3203 | "common": "Yes", 3204 | "one_liner": "", 3205 | "description": "", 3206 | "health_category": [ 3207 | "Immunity" 3208 | ] 3209 | }, 3210 | { 3211 | "name": "Scleroderma (SCL-70) Antibody", 3212 | "code": "", 3213 | "group": "none", 3214 | "common": "No", 3215 | "one_liner": "", 3216 | "description": "", 3217 | "health_category": [ 3218 | ] 3219 | }, 3220 | { 3221 | "name": "Sed Rate", 3222 | "code": "", 3223 | "group": "none", 3224 | "common": "No", 3225 | "one_liner": "Erythrocyte Sedimentation Rate", 3226 | "description": "", 3227 | "health_category": [ 3228 | ] 3229 | }, 3230 | { 3231 | "name": "Semen Analysis", 3232 | "code": "", 3233 | "group": "none", 3234 | "common": "No", 3235 | "one_liner": "", 3236 | "description": "", 3237 | "health_category": [ 3238 | ] 3239 | }, 3240 | { 3241 | "name": "Serotonin", 3242 | "code": "", 3243 | "group": "none", 3244 | "common": "No", 3245 | "one_liner": "", 3246 | "description": "", 3247 | "health_category": [ 3248 | ] 3249 | }, 3250 | { 3251 | "name": "Sex Hormone Binding Globulin", 3252 | "code": "", 3253 | "group": "none", 3254 | "common": "No", 3255 | "one_liner": "", 3256 | "description": "", 3257 | "health_category": [ 3258 | ] 3259 | }, 3260 | { 3261 | "name": "Sickle Cell Screen", 3262 | "code": "", 3263 | "group": "none", 3264 | "common": "No", 3265 | "one_liner": "", 3266 | "description": "", 3267 | "health_category": [ 3268 | ] 3269 | }, 3270 | { 3271 | "name": "Sjogrens SSA (RO) Antibody", 3272 | "code": "", 3273 | "group": "none", 3274 | "common": "No", 3275 | "one_liner": "", 3276 | "description": "", 3277 | "health_category": [ 3278 | "Immunity" 3279 | ] 3280 | }, 3281 | { 3282 | "name": "Sjogrens SSB (LA) Antibody", 3283 | "code": "", 3284 | "group": "none", 3285 | "common": "No", 3286 | "one_liner": "", 3287 | "description": "", 3288 | "health_category": [ 3289 | "Immunity" 3290 | ] 3291 | }, 3292 | { 3293 | "name": "Sm (Smith) Antibody", 3294 | "code": "", 3295 | "group": "none", 3296 | "common": "No", 3297 | "one_liner": "", 3298 | "description": "", 3299 | "health_category": [ 3300 | "Immunity" 3301 | ] 3302 | }, 3303 | { 3304 | "name": "Smooth Muscle Antibody", 3305 | "code": "", 3306 | "group": "none", 3307 | "common": "No", 3308 | "one_liner": "", 3309 | "description": "", 3310 | "health_category": [ 3311 | ] 3312 | }, 3313 | { 3314 | "name": "Sodium", 3315 | "code": "", 3316 | "group": "none", 3317 | "common": "No", 3318 | "one_liner": "", 3319 | "description": "", 3320 | "health_category": [ 3321 | ] 3322 | }, 3323 | { 3324 | "name": "Somatomedin C", 3325 | "code": "", 3326 | "group": "none", 3327 | "common": "No", 3328 | "one_liner": "", 3329 | "description": "", 3330 | "health_category": [ 3331 | ] 3332 | }, 3333 | { 3334 | "name": "Somatotropin", 3335 | "code": "", 3336 | "group": "none", 3337 | "common": "No", 3338 | "one_liner": "", 3339 | "description": "", 3340 | "health_category": [ 3341 | ] 3342 | }, 3343 | { 3344 | "name": "Sperm Count", 3345 | "code": "", 3346 | "group": "none", 3347 | "common": "No", 3348 | "one_liner": "", 3349 | "description": "", 3350 | "health_category": [ 3351 | ] 3352 | }, 3353 | { 3354 | "name": "Stool Culture", 3355 | "code": "", 3356 | "group": "none", 3357 | "common": "No", 3358 | "one_liner": "", 3359 | "description": "", 3360 | "health_category": [ 3361 | ] 3362 | }, 3363 | { 3364 | "name": "Sweat Chloride", 3365 | "code": "", 3366 | "group": "none", 3367 | "common": "No", 3368 | "one_liner": "", 3369 | "description": "", 3370 | "health_category": [ 3371 | ] 3372 | }, 3373 | { 3374 | "name": "Synovial Fluid Analysis", 3375 | "code": "", 3376 | "group": "none", 3377 | "common": "No", 3378 | "one_liner": "", 3379 | "description": "", 3380 | "health_category": [ 3381 | ] 3382 | }, 3383 | { 3384 | "name": "T3", 3385 | "code": "", 3386 | "group": "none", 3387 | "common": "No", 3388 | "one_liner": "Triiodothyronine Thyroid Hormone", 3389 | "description": "", 3390 | "health_category": [ 3391 | "Metabolic Health", 3392 | "Immunity" 3393 | ] 3394 | }, 3395 | { 3396 | "name": "T4", 3397 | "code": "", 3398 | "group": "none", 3399 | "common": "No", 3400 | "one_liner": "Thyroxine Thyroid Hormone", 3401 | "description": "", 3402 | "health_category": [ 3403 | "Metabolic Health", 3404 | "Immunity" 3405 | ] 3406 | }, 3407 | { 3408 | "name": "TB Skin Test", 3409 | "code": "", 3410 | "group": "none", 3411 | "common": "No", 3412 | "one_liner": "", 3413 | "description": "", 3414 | "health_category": [ 3415 | ] 3416 | }, 3417 | { 3418 | "name": "Testosterone", 3419 | "code": "", 3420 | "group": "none", 3421 | "common": "No", 3422 | "one_liner": "", 3423 | "description": "", 3424 | "health_category": [ 3425 | ] 3426 | }, 3427 | { 3428 | "name": "TGF-Beta", 3429 | "code": "", 3430 | "group": "none", 3431 | "common": "No", 3432 | "one_liner": "", 3433 | "description": "Transforming Growth Factor Beta", 3434 | "health_category": [ 3435 | "Blood Health", 3436 | "Metabolic Health", 3437 | "Immunity" 3438 | ] 3439 | }, 3440 | { 3441 | "name": "Theophylline", 3442 | "code": "", 3443 | "group": "none", 3444 | "common": "No", 3445 | "one_liner": "", 3446 | "description": "", 3447 | "health_category": [ 3448 | ] 3449 | }, 3450 | { 3451 | "name": "Throat Culture", 3452 | "code": "", 3453 | "group": "none", 3454 | "common": "No", 3455 | "one_liner": "", 3456 | "description": "", 3457 | "health_category": [ 3458 | ] 3459 | }, 3460 | { 3461 | "name": "Thyroglobulin", 3462 | "code": "", 3463 | "group": "none", 3464 | "common": "No", 3465 | "one_liner": "", 3466 | "description": "", 3467 | "health_category": [ 3468 | ] 3469 | }, 3470 | { 3471 | "name": "Thyroid Panel", 3472 | "code": "", 3473 | "group": "none", 3474 | "common": "No", 3475 | "one_liner": "", 3476 | "description": "", 3477 | "health_category": [ 3478 | "Metabolic Health", 3479 | "Immunity" 3480 | ] 3481 | }, 3482 | { 3483 | "name": "TNF-Alpha", 3484 | "code": "", 3485 | "group": "none", 3486 | "common": "No", 3487 | "one_liner": "Tumor Necrosis Factor Alpha", 3488 | "description": "TNF-alpha is often a marker of chronic inflammation.", 3489 | "health_category": [ 3490 | ] 3491 | }, 3492 | { 3493 | "name": "Torch Panel", 3494 | "code": "", 3495 | "group": "none", 3496 | "common": "No", 3497 | "one_liner": "", 3498 | "description": "", 3499 | "health_category": [ 3500 | ] 3501 | }, 3502 | { 3503 | "name": "Total AFP", 3504 | "code": "", 3505 | "group": "none", 3506 | "common": "No", 3507 | "one_liner": "Total Alpha Fetoprotein Tumor Marker", 3508 | "description": "", 3509 | "health_category": [ 3510 | ] 3511 | }, 3512 | { 3513 | "name": "Total Bilirubin", 3514 | "code": "", 3515 | "group": "none", 3516 | "common": "No", 3517 | "one_liner": "", 3518 | "description": "", 3519 | "health_category": [ 3520 | ] 3521 | }, 3522 | { 3523 | "name": "Total Hemolytic Complement Activity", 3524 | "code": "", 3525 | "group": "none", 3526 | "common": "No", 3527 | "one_liner": "", 3528 | "description": "", 3529 | "health_category": [ 3530 | ] 3531 | }, 3532 | { 3533 | "name": "Total Iron-binding Capacity", 3534 | "code": "", 3535 | "group": "none", 3536 | "common": "No", 3537 | "one_liner": "", 3538 | "description": "", 3539 | "health_category": [ 3540 | ] 3541 | }, 3542 | { 3543 | "name": "Total Protein and A/G Ratio", 3544 | "code": "", 3545 | "group": "none", 3546 | "common": "No", 3547 | "one_liner": "", 3548 | "description": "", 3549 | "health_category": [ 3550 | ] 3551 | }, 3552 | { 3553 | "name": "Toxicology Screen", 3554 | "code": "", 3555 | "group": "none", 3556 | "common": "No", 3557 | "one_liner": "", 3558 | "description": "", 3559 | "health_category": [ 3560 | ] 3561 | }, 3562 | { 3563 | "name": "TPO Anti-thyroid Antibody", 3564 | "code": "", 3565 | "group": "none", 3566 | "common": "No", 3567 | "one_liner": "", 3568 | "description": "", 3569 | "health_category": [ 3570 | "Metabolic Health", 3571 | "Immunity" 3572 | ] 3573 | }, 3574 | { 3575 | "name": "Transferrin", 3576 | "code": "", 3577 | "group": "none", 3578 | "common": "No", 3579 | "one_liner": "", 3580 | "description": "", 3581 | "health_category": [ 3582 | ] 3583 | }, 3584 | { 3585 | "name": "Trichomonas Vaginalis Amplified Probe", 3586 | "code": "", 3587 | "group": "none", 3588 | "common": "No", 3589 | "one_liner": "", 3590 | "description": "", 3591 | "health_category": [ 3592 | ] 3593 | }, 3594 | { 3595 | "name": "Trichomonas Vaginalis Culture", 3596 | "code": "", 3597 | "group": "none", 3598 | "common": "No", 3599 | "one_liner": "", 3600 | "description": "", 3601 | "health_category": [ 3602 | ] 3603 | }, 3604 | { 3605 | "name": "Triglycerides", 3606 | "code": "", 3607 | "group": "none", 3608 | "common": "No", 3609 | "one_liner": "", 3610 | "description": "", 3611 | "health_category": [ 3612 | ] 3613 | }, 3614 | { 3615 | "name": "Triple Maternal Marker Screen", 3616 | "code": "", 3617 | "group": "none", 3618 | "common": "No", 3619 | "one_liner": "", 3620 | "description": "", 3621 | "health_category": [ 3622 | ] 3623 | }, 3624 | { 3625 | "name": "Troponin T", 3626 | "code": "", 3627 | "group": "none", 3628 | "common": "No", 3629 | "one_liner": "", 3630 | "description": "", 3631 | "health_category": [ 3632 | ] 3633 | }, 3634 | { 3635 | "name": "Trypsin", 3636 | "code": "", 3637 | "group": "none", 3638 | "common": "No", 3639 | "one_liner": "", 3640 | "description": "", 3641 | "health_category": [ 3642 | ] 3643 | }, 3644 | { 3645 | "name": "Trypsinogen", 3646 | "code": "", 3647 | "group": "none", 3648 | "common": "No", 3649 | "one_liner": "", 3650 | "description": "", 3651 | "health_category": [ 3652 | ] 3653 | }, 3654 | { 3655 | "name": "TSH", 3656 | "code": "", 3657 | "group": "none", 3658 | "common": "No", 3659 | "one_liner": "Thyroid-Stimulating Hormone", 3660 | "description": "", 3661 | "health_category": [ 3662 | "Metabolic Health", 3663 | "Immunity" 3664 | ] 3665 | }, 3666 | { 3667 | "name": "TSI", 3668 | "code": "", 3669 | "group": "none", 3670 | "common": "No", 3671 | "one_liner": "Thyroid-Stimulating Immunoglobulin", 3672 | "description": "", 3673 | "health_category": [ 3674 | "Metabolic Health", 3675 | "Immunity" 3676 | ] 3677 | }, 3678 | { 3679 | "name": "Unsaturated Iron Binding Capacity", 3680 | "code": "", 3681 | "group": "none", 3682 | "common": "No", 3683 | "one_liner": "", 3684 | "description": "", 3685 | "health_category": [ 3686 | ] 3687 | }, 3688 | { 3689 | "name": "Ureaplasma Culture", 3690 | "code": "", 3691 | "group": "none", 3692 | "common": "No", 3693 | "one_liner": "", 3694 | "description": "", 3695 | "health_category": [ 3696 | ] 3697 | }, 3698 | { 3699 | "name": "Uric Acid", 3700 | "code": "", 3701 | "group": "none", 3702 | "common": "No", 3703 | "one_liner": "", 3704 | "description": "", 3705 | "health_category": [ 3706 | ] 3707 | }, 3708 | { 3709 | "name": "Urinalysis", 3710 | "code": "", 3711 | "group": "none", 3712 | "common": "No", 3713 | "one_liner": "", 3714 | "description": "", 3715 | "health_category": [ 3716 | ] 3717 | }, 3718 | { 3719 | "name": "Urine Blood", 3720 | "code": "", 3721 | "group": "none", 3722 | "common": "No", 3723 | "one_liner": "", 3724 | "description": "", 3725 | "health_category": [ 3726 | ] 3727 | }, 3728 | { 3729 | "name": "Urine Culture", 3730 | "code": "", 3731 | "group": "none", 3732 | "common": "No", 3733 | "one_liner": "", 3734 | "description": "", 3735 | "health_category": [ 3736 | ] 3737 | }, 3738 | { 3739 | "name": "Urine Epithelial Cells", 3740 | "code": "", 3741 | "group": "none", 3742 | "common": "No", 3743 | "one_liner": "", 3744 | "description": "", 3745 | "health_category": [ 3746 | ] 3747 | }, 3748 | { 3749 | "name": "Urine Glucose", 3750 | "code": "", 3751 | "group": "none", 3752 | "common": "No", 3753 | "one_liner": "", 3754 | "description": "", 3755 | "health_category": [ 3756 | ] 3757 | }, 3758 | { 3759 | "name": "Urine Leukocyte Esterase", 3760 | "code": "", 3761 | "group": "none", 3762 | "common": "No", 3763 | "one_liner": "", 3764 | "description": "", 3765 | "health_category": [ 3766 | ] 3767 | }, 3768 | { 3769 | "name": "Urine Metanephrines, Total and Fractionated", 3770 | "code": "", 3771 | "group": "none", 3772 | "common": "No", 3773 | "one_liner": "", 3774 | "description": "", 3775 | "health_category": [ 3776 | ] 3777 | }, 3778 | { 3779 | "name": "Urine Microalbumin", 3780 | "code": "", 3781 | "group": "none", 3782 | "common": "No", 3783 | "one_liner": "", 3784 | "description": "", 3785 | "health_category": [ 3786 | ] 3787 | }, 3788 | { 3789 | "name": "Urine Protein", 3790 | "code": "", 3791 | "group": "none", 3792 | "common": "No", 3793 | "one_liner": "", 3794 | "description": "", 3795 | "health_category": [ 3796 | ] 3797 | }, 3798 | { 3799 | "name": "Urine Protein Electrophoresis", 3800 | "code": "", 3801 | "group": "none", 3802 | "common": "No", 3803 | "one_liner": "", 3804 | "description": "", 3805 | "health_category": [ 3806 | ] 3807 | }, 3808 | { 3809 | "name": "Urine RBC/HPF", 3810 | "code": "", 3811 | "group": "none", 3812 | "common": "No", 3813 | "one_liner": "Urine Red Blood Cell Count", 3814 | "description": "", 3815 | "health_category": [ 3816 | ] 3817 | }, 3818 | { 3819 | "name": "Urine Specific Gravity", 3820 | "code": "", 3821 | "group": "none", 3822 | "common": "No", 3823 | "one_liner": "", 3824 | "description": "", 3825 | "health_category": [ 3826 | "Metabolic Health" 3827 | ] 3828 | }, 3829 | { 3830 | "name": "Urine Total Protein", 3831 | "code": "", 3832 | "group": "none", 3833 | "common": "No", 3834 | "one_liner": "", 3835 | "description": "", 3836 | "health_category": [ 3837 | ] 3838 | }, 3839 | { 3840 | "name": "Valproic Acid", 3841 | "code": "", 3842 | "group": "none", 3843 | "common": "No", 3844 | "one_liner": "", 3845 | "description": "", 3846 | "health_category": [ 3847 | ] 3848 | }, 3849 | { 3850 | "name": "Varicella Zoster Virus Antibodies, IgG and IgM ", 3851 | "code": "", 3852 | "group": "none", 3853 | "common": "No", 3854 | "one_liner": "", 3855 | "description": "", 3856 | "health_category": [ 3857 | ] 3858 | }, 3859 | { 3860 | "name": "Varicella Zoster Virus Culture", 3861 | "code": "", 3862 | "group": "none", 3863 | "common": "No", 3864 | "one_liner": "", 3865 | "description": "", 3866 | "health_category": [ 3867 | ] 3868 | }, 3869 | { 3870 | "name": "Varicella Zoster Virus DFA", 3871 | "code": "", 3872 | "group": "none", 3873 | "common": "No", 3874 | "one_liner": "", 3875 | "description": "", 3876 | "health_category": [ 3877 | ] 3878 | }, 3879 | { 3880 | "name": "Varicella Zoster Virus PCR", 3881 | "code": "", 3882 | "group": "none", 3883 | "common": "No", 3884 | "one_liner": "", 3885 | "description": "", 3886 | "health_category": [ 3887 | ] 3888 | }, 3889 | { 3890 | "name": "VEGF", 3891 | "code": "", 3892 | "group": "none", 3893 | "common": "No", 3894 | "one_liner": "Vascular Endothelial Growth Factor", 3895 | "description": "", 3896 | "health_category": [ 3897 | "Blood Health", 3898 | "Immunity" 3899 | ] 3900 | }, 3901 | { 3902 | "name": "VDRL", 3903 | "code": "", 3904 | "group": "none", 3905 | "common": "No", 3906 | "one_liner": "Syphilis Antibody Screen", 3907 | "description": "", 3908 | "health_category": [ 3909 | ] 3910 | }, 3911 | { 3912 | "name": "Vitamin B12", 3913 | "code": "", 3914 | "group": "none", 3915 | "common": "No", 3916 | "one_liner": "", 3917 | "description": "", 3918 | "health_category": [ 3919 | "Vitamins and Minerals" 3920 | ] 3921 | }, 3922 | { 3923 | "name": "Vitamin B12 & Folate", 3924 | "code": "", 3925 | "group": "none", 3926 | "common": "No", 3927 | "one_liner": "", 3928 | "description": "", 3929 | "health_category": [ 3930 | "Vitamins and Minerals" 3931 | ] 3932 | }, 3933 | { 3934 | "name": "Vitamin D", 3935 | "code": "", 3936 | "group": "none", 3937 | "common": "No", 3938 | "one_liner": "", 3939 | "description": "", 3940 | "health_category": [ 3941 | "Vitamins and Minerals", 3942 | "Immunity" 3943 | ] 3944 | }, 3945 | { 3946 | "name": "Vitamin K", 3947 | "code": "", 3948 | "group": "none", 3949 | "common": "No", 3950 | "one_liner": "", 3951 | "description": "", 3952 | "health_category": [ 3953 | "Vitamins and Minerals" 3954 | ] 3955 | }, 3956 | { 3957 | "name": "WBC Differential Count", 3958 | "code": "", 3959 | "group": "none", 3960 | "common": "No", 3961 | "one_liner": "", 3962 | "description": "", 3963 | "health_category": [ 3964 | ] 3965 | }, 3966 | { 3967 | "name": "West Nile Virus Antibody", 3968 | "code": "", 3969 | "group": "none", 3970 | "common": "No", 3971 | "one_liner": "", 3972 | "description": "", 3973 | "health_category": [ 3974 | ] 3975 | }, 3976 | { 3977 | "name": "Wet Prep", 3978 | "code": "", 3979 | "group": "none", 3980 | "common": "No", 3981 | "one_liner": "", 3982 | "description": "", 3983 | "health_category": [ 3984 | ] 3985 | }, 3986 | { 3987 | "name": "Wound Culture", 3988 | "code": "", 3989 | "group": "none", 3990 | "common": "No", 3991 | "one_liner": "", 3992 | "description": "", 3993 | "health_category": [ 3994 | ] 3995 | }, 3996 | { 3997 | "name": "Zinc Protoporphyrin", 3998 | "code": "", 3999 | "group": "none", 4000 | "common": "No", 4001 | "one_liner": "", 4002 | "description": "", 4003 | "health_category": [ 4004 | ] 4005 | } 4006 | ] --------------------------------------------------------------------------------