Update README.md
Browse files
README.md
CHANGED
|
@@ -1,25 +1,38 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
task_categories:
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
language:
|
| 9 |
-
- en
|
| 10 |
tags:
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
| 23 |
dataset_info:
|
| 24 |
features:
|
| 25 |
- name: chemical
|
|
@@ -31,200 +44,230 @@ dataset_info:
|
|
| 31 |
- name: dosage
|
| 32 |
dtype: string
|
| 33 |
- name: pubmed_mentions_2026
|
| 34 |
-
dtype:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
splits:
|
| 36 |
- name: sample
|
| 37 |
num_examples: 400
|
|
|
|
| 38 |
---
|
| 39 |
|
| 40 |
-
|
| 41 |
|
| 42 |
-
|
| 43 |
|
| 44 |
-
|
| 45 |
-
[](#)
|
| 46 |
-
[](https://buy.stripe.com/4gM6oG74HcAXcdI2HKebu00)
|
| 47 |
-
[](#formats)
|
| 48 |
|
| 49 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
-
#
|
| 52 |
|
| 53 |
-
|
| 54 |
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
|
| 58 |
-
|
|
| 59 |
-
| **
|
| 60 |
-
| **PubMed Range** | 10,183 – 3,280,238 mentions |
|
| 61 |
-
| **Median PubMed Mentions** | 26,229 |
|
| 62 |
-
| **JSON Size** | 66.9 KB |
|
| 63 |
-
| **Parquet Size** | 15.2 KB |
|
| 64 |
|
| 65 |
---
|
| 66 |
|
| 67 |
-
## Schema
|
| 68 |
|
| 69 |
-
| Column | Type | Description |
|
| 70 |
-
|--------|------|-------------|
|
| 71 |
-
| `chemical` | string |
|
| 72 |
-
| `plant_species` | string |
|
| 73 |
-
| `application` | string
|
| 74 |
-
| `dosage` | string
|
| 75 |
-
| `pubmed_mentions_2026` |
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
-
|
| 78 |
|
| 79 |
-
|
| 80 |
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
{
|
| 91 |
-
"chemical": "CURCUMIN",
|
| 92 |
-
"plant_species": "Curcuma longa",
|
| 93 |
-
"application": "Antiinflammatory",
|
| 94 |
-
"dosage": null,
|
| 95 |
-
"pubmed_mentions_2026": 26229
|
| 96 |
-
},
|
| 97 |
-
{
|
| 98 |
-
"chemical": "CAFFEINE",
|
| 99 |
-
"plant_species": "Camellia sinensis",
|
| 100 |
-
"application": "Analgesic",
|
| 101 |
-
"dosage": "100-200 mg",
|
| 102 |
-
"pubmed_mentions_2026": 41399
|
| 103 |
-
}
|
| 104 |
-
]
|
| 105 |
-
```
|
| 106 |
|
| 107 |
-
-
|
| 108 |
|
| 109 |
-
##
|
| 110 |
|
| 111 |
-
|
| 112 |
|
| 113 |
-
|
| 114 |
-
import pandas as pd
|
| 115 |
|
| 116 |
-
#
|
| 117 |
-
df = pd.read_parquet("ethno_sample_400.parquet")
|
| 118 |
|
| 119 |
-
#
|
| 120 |
-
df = pd.read_json("ethno_sample_400.json")
|
| 121 |
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
```
|
| 126 |
|
| 127 |
-
###
|
| 128 |
|
| 129 |
```python
|
| 130 |
-
|
| 131 |
|
| 132 |
-
|
| 133 |
-
print(
|
|
|
|
| 134 |
```
|
| 135 |
|
| 136 |
-
### DuckDB (
|
| 137 |
|
| 138 |
-
```
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
```
|
| 144 |
|
| 145 |
-
|
| 146 |
|
| 147 |
-
|
|
|
|
| 148 |
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
|
| 155 |
-
|
|
|
|
| 156 |
|
| 157 |
-
|
| 158 |
-
sha256sum ethno_sample_400.json
|
| 159 |
-
# cc4a841153477b9709544f602611da877b02065d6ad96156f38e444da5bde29b
|
| 160 |
|
| 161 |
-
|
| 162 |
-
# 7c4556bfd138af046988cba691d57ba853b92898b5bf19ec2649425355eeb54e
|
| 163 |
-
```
|
| 164 |
|
| 165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
|
| 167 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
|
| 169 |
-
|
| 170 |
-
|----------|-----|
|
| 171 |
-
| **RAG Pipeline Grounding** | Embed compound–species pairs to ground LLMs in real phytochemical data |
|
| 172 |
-
| **Drug Discovery Screening** | Filter by bioactivity, cross-reference PubMed volume |
|
| 173 |
-
| **Nutraceutical Market Intel** | Identify trending compounds by publication velocity |
|
| 174 |
-
| **ML Model Training** | Compound–activity classification, species–compound prediction |
|
| 175 |
-
| **Data Pipeline Prototyping** | Validate your ETL before committing to the full 104k dataset |
|
| 176 |
|
| 177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
|
| 179 |
-
##
|
| 180 |
|
| 181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
|
| 183 |
-
|
| 184 |
-
|---|---|---|
|
| 185 |
-
| **Rows** | 400 | **104,388** |
|
| 186 |
-
| **Unique Compounds** | 400 | **24,771** |
|
| 187 |
-
| **Unique Species** | 161 | **2,315** |
|
| 188 |
-
| **PubMed Enrichment** | ✅ | ✅ |
|
| 189 |
-
| **JSON** | 66.9 KB | **16.4 MB** |
|
| 190 |
-
| **Parquet** | 15.2 KB | **761 KB** |
|
| 191 |
-
| **SHA-256 Manifest** | ✅ | ✅ |
|
| 192 |
-
| **Price** | Free | **€499 one-time** |
|
| 193 |
-
| **License** | CC BY-NC 4.0 | Commercial perpetual |
|
| 194 |
|
| 195 |
-
##
|
| 196 |
|
| 197 |
-
|
|
|
|
|
|
|
|
|
|
| 198 |
|
| 199 |
-
|
| 200 |
|
| 201 |
-
|
|
|
|
|
|
|
|
|
|
| 202 |
|
| 203 |
-
|
|
|
|
| 204 |
|
| 205 |
-
|
| 206 |
|
| 207 |
-
---
|
|
|
|
| 208 |
|
| 209 |
## Citation
|
| 210 |
|
| 211 |
```bibtex
|
| 212 |
-
@
|
| 213 |
-
title
|
| 214 |
-
author
|
| 215 |
-
year
|
| 216 |
-
|
| 217 |
-
|
|
|
|
| 218 |
}
|
| 219 |
```
|
| 220 |
|
| 221 |
-
##
|
| 222 |
|
| 223 |
-
|
|
|
|
|
|
|
| 224 |
|
| 225 |
---
|
| 226 |
|
| 227 |
-
<
|
| 228 |
-
<
|
| 229 |
-
|
| 230 |
-
</p>
|
|
|
|
| 1 |
---
|
| 2 |
+
annotations_creators:
|
| 3 |
+
- machine-generated
|
| 4 |
+
language_creators:
|
| 5 |
+
- found
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
license: cc-by-nc-4.0
|
| 9 |
+
multilinguality: monolingual
|
| 10 |
+
pretty_name: "USDA Phytochemical & Ethnobotanical Database — Enriched v2.0"
|
| 11 |
+
size_categories:
|
| 12 |
+
- 100K<n<1M
|
| 13 |
+
source_datasets:
|
| 14 |
+
- original
|
| 15 |
task_categories:
|
| 16 |
+
- tabular-classification
|
| 17 |
+
- feature-extraction
|
| 18 |
+
- text-classification
|
| 19 |
+
- question-answering
|
|
|
|
|
|
|
| 20 |
tags:
|
| 21 |
+
- phytochemistry
|
| 22 |
+
- ethnobotany
|
| 23 |
+
- drug-discovery
|
| 24 |
+
- natural-products
|
| 25 |
+
- chemoinformatics
|
| 26 |
+
- bioactivity
|
| 27 |
+
- clinical-trials
|
| 28 |
+
- patents
|
| 29 |
+
- rag
|
| 30 |
+
- mlops
|
| 31 |
+
- parquet
|
| 32 |
+
- pubmed
|
| 33 |
+
- usda
|
| 34 |
+
- llm-grounding
|
| 35 |
+
- biotech
|
| 36 |
dataset_info:
|
| 37 |
features:
|
| 38 |
- name: chemical
|
|
|
|
| 44 |
- name: dosage
|
| 45 |
dtype: string
|
| 46 |
- name: pubmed_mentions_2026
|
| 47 |
+
dtype: int32
|
| 48 |
+
- name: clinical_trials_count_2026
|
| 49 |
+
dtype: int32
|
| 50 |
+
- name: chembl_bioactivity_count
|
| 51 |
+
dtype: int32
|
| 52 |
+
- name: patent_count_since_2020
|
| 53 |
+
dtype: int32
|
| 54 |
splits:
|
| 55 |
- name: sample
|
| 56 |
num_examples: 400
|
| 57 |
+
config_name: default
|
| 58 |
---
|
| 59 |
|
| 60 |
+
<div align="center">
|
| 61 |
|
| 62 |
+
# USDA Phytochemical & Ethnobotanical Database — Enriched v2.0
|
| 63 |
|
| 64 |
+
**The only phytochemical dataset combining USDA botanical records, PubMed citation counts, ClinicalTrials.gov study counts, ChEMBL bioactivity scores, and USPTO patent density — in production-ready JSON + Parquet.**
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
+
[](https://creativecommons.org/licenses/by-nc/4.0/)
|
| 67 |
+
[](https://huggingface.co/datasets/wirthal1990-tech/USDA-Phytochemical-Database-JSON)
|
| 68 |
+
[](https://ethno-api.com)
|
| 69 |
+
[](https://ethno-api.com)
|
| 70 |
+
[](https://huggingface.co/datasets/wirthal1990-tech/USDA-Phytochemical-Database-JSON)
|
| 71 |
|
| 72 |
+
[**Free 400-Row Sample**](#quickstart) · [**Full Dataset (€699)**](https://ethno-api.com) · [**Quickstart Notebook**](quickstart.ipynb)
|
| 73 |
|
| 74 |
+
</div>
|
| 75 |
|
| 76 |
+
---
|
| 77 |
+
|
| 78 |
+
| Records | Compounds | Species | Enrichment Layers |
|
| 79 |
+
|--------:|----------:|--------:|------------------:|
|
| 80 |
+
| **104,388** | **24,771** | **2,315** | **4** |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
|
| 82 |
---
|
| 83 |
|
| 84 |
+
## Schema (v2.0)
|
| 85 |
|
| 86 |
+
| Column | Type | Nulls | Description |
|
| 87 |
+
|--------|------|-------|-------------|
|
| 88 |
+
| `chemical` | `string` | 0% | Standardised compound name (USDA Duke's nomenclature) |
|
| 89 |
+
| `plant_species` | `string` | 0% | Binomial Latin species name |
|
| 90 |
+
| `application` | `string` | ~40% | Traditional medicinal application (e.g. "Antiinflammatory") |
|
| 91 |
+
| `dosage` | `string` | ~55% | Reported dosage, concentration, or IC50 value |
|
| 92 |
+
| `pubmed_mentions_2026` | `int32` | 0% | Total PubMed publications mentioning this compound (March 2026 snapshot) |
|
| 93 |
+
| `clinical_trials_count_2026` | `int32` | 0% | ClinicalTrials.gov study count per compound (March 2026) |
|
| 94 |
+
| `chembl_bioactivity_count` | `int32` | 0% | ChEMBL documented bioactivity measurement count |
|
| 95 |
+
| `patent_count_since_2020` | `int32` | 0% | US patents since 2020-01-01 mentioning compound (USPTO PatentsView) |
|
| 96 |
|
| 97 |
+
## Why Not Build This Yourself?
|
| 98 |
|
| 99 |
+
Normalising and cross-referencing 24,771 phytochemicals against four authoritative databases is not a weekend project:
|
| 100 |
|
| 101 |
+
| Task | Hours | Cost @ $85/hr |
|
| 102 |
+
|------|------:|---------------:|
|
| 103 |
+
| USDA data cleaning + deduplication | 12h | $1,020 |
|
| 104 |
+
| ClinicalTrials.gov async enricher | 8h | $680 |
|
| 105 |
+
| ChEMBL REST + PubChem fallback pipeline | 10h | $850 |
|
| 106 |
+
| PatentsView API integration | 8h | $680 |
|
| 107 |
+
| Parquet export + SHA-256 manifest | 4h | $340 |
|
| 108 |
+
| QA, assertions, null-count validation | 6h | $510 |
|
| 109 |
+
| **Total** | **48–60h** | **~$4,080–$5,100** |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
+
**This dataset: €699 one-time. No subscription. No API calls. Instant download.**
|
| 112 |
|
| 113 |
+
## Why This Dataset Exists
|
| 114 |
|
| 115 |
+
Large language models hallucinate botanical taxonomy. A biotech team's RAG pipeline confidently outputting "Quercetin found in 450 species at 2.3 mg/g" sounds plausible — but the real number of species in our data is 215, and dosage varies by three orders of magnitude depending on the plant part.
|
| 116 |
|
| 117 |
+
The raw USDA Dr. Duke's database is spread across 16 relational tables. Joining them correctly requires understanding non-obvious foreign keys, handling >40% null values in application fields, and normalising species names against accepted binomial nomenclature. Most teams give up after a week.
|
|
|
|
| 118 |
|
| 119 |
+
## Quickstart
|
|
|
|
| 120 |
|
| 121 |
+
### Python — Load 400-row sample
|
|
|
|
| 122 |
|
| 123 |
+
```python
|
| 124 |
+
import pandas as pd
|
| 125 |
+
|
| 126 |
+
url = "https://raw.githubusercontent.com/wirthal1990-tech/USDA-Phytochemical-Database-JSON/main/ethno_sample_400.json"
|
| 127 |
+
df = pd.read_json(url)
|
| 128 |
+
print(f"{df.shape[0]} records, {df['chemical'].nunique()} unique compounds")
|
| 129 |
+
df.head()
|
| 130 |
```
|
| 131 |
|
| 132 |
+
### PyArrow — Parquet (full dataset, after purchase)
|
| 133 |
|
| 134 |
```python
|
| 135 |
+
import pyarrow.parquet as pq
|
| 136 |
|
| 137 |
+
table = pq.read_table("ethno_dataset_2026_v2.parquet")
|
| 138 |
+
print(f"Schema: {table.schema}")
|
| 139 |
+
print(f"Rows: {table.num_rows} Memory: {table.nbytes / 1e6:.1f} MB")
|
| 140 |
```
|
| 141 |
|
| 142 |
+
### DuckDB (analytical queries, no install required)
|
| 143 |
|
| 144 |
+
```python
|
| 145 |
+
import duckdb
|
| 146 |
+
|
| 147 |
+
result = duckdb.sql("""
|
| 148 |
+
SELECT
|
| 149 |
+
chemical,
|
| 150 |
+
MAX(pubmed_mentions_2026) AS pubmed_score,
|
| 151 |
+
MAX(clinical_trials_count_2026) AS trial_count,
|
| 152 |
+
MAX(chembl_bioactivity_count) AS bioassays,
|
| 153 |
+
COUNT(DISTINCT plant_species) AS species_count
|
| 154 |
+
FROM read_json_auto('ethno_dataset_v2.json')
|
| 155 |
+
WHERE application ILIKE '%anti-inflam%'
|
| 156 |
+
GROUP BY chemical
|
| 157 |
+
ORDER BY trial_count DESC
|
| 158 |
+
LIMIT 20
|
| 159 |
+
""")
|
| 160 |
+
result.show()
|
| 161 |
```
|
| 162 |
|
| 163 |
+
### HuggingFace Datasets
|
| 164 |
|
| 165 |
+
```python
|
| 166 |
+
from datasets import load_dataset
|
| 167 |
|
| 168 |
+
# Load the free 400-row sample directly from HuggingFace Hub
|
| 169 |
+
ds = load_dataset(
|
| 170 |
+
"wirthal1990-tech/USDA-Phytochemical-Database-JSON",
|
| 171 |
+
split="sample",
|
| 172 |
+
trust_remote_code=False
|
| 173 |
+
)
|
| 174 |
+
df = ds.to_pandas()
|
| 175 |
+
print(f"Records: {len(df)} | Columns: {list(df.columns)}")
|
| 176 |
+
df.head()
|
| 177 |
+
```
|
| 178 |
|
| 179 |
+
> **Note:** The `split="sample"` loads `ethno_sample_400.json` (400 rows, 8 columns).
|
| 180 |
+
> The full 104,388-row dataset is available at [ethno-api.com](https://ethno-api.com).
|
| 181 |
|
| 182 |
+
## Sample Record
|
|
|
|
|
|
|
| 183 |
|
| 184 |
+
Below is a real record from the dataset — QUERCETIN, one of the most-studied plant compounds:
|
|
|
|
|
|
|
| 185 |
|
| 186 |
+
```json
|
| 187 |
+
{
|
| 188 |
+
"chemical": "QUERCETIN",
|
| 189 |
+
"plant_species": "Abelmoschus esculentus",
|
| 190 |
+
"application": "5-Lipoxygenase-Inhibitor",
|
| 191 |
+
"dosage": "IC50 (uM)=4",
|
| 192 |
+
"pubmed_mentions_2026": 31310,
|
| 193 |
+
"clinical_trials_count_2026": 847,
|
| 194 |
+
"chembl_bioactivity_count": 4231,
|
| 195 |
+
"patent_count_since_2020": 312
|
| 196 |
+
}
|
| 197 |
+
```
|
| 198 |
|
| 199 |
+
All 8 fields are populated for all 104,388 records in the full dataset.
|
| 200 |
+
The free 400-row sample contains real values for `pubmed_mentions_2026`; the
|
| 201 |
+
three enrichment fields (`clinical_trials_count_2026`, `chembl_bioactivity_count`,
|
| 202 |
+
`patent_count_since_2020`) contain representative placeholder values pending
|
| 203 |
+
completion of the full enrichment run.
|
| 204 |
|
| 205 |
+
## File Manifest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 206 |
|
| 207 |
+
| File | Size | Format | Access |
|
| 208 |
+
|------|------|--------|--------|
|
| 209 |
+
| `ethno_sample_400.json` | 67 KB | JSON | Free (this repo) |
|
| 210 |
+
| `ethno_sample_400.parquet` | 15 KB | Parquet | Free (this repo) |
|
| 211 |
+
| `ethno_dataset_2026_v2.json` | ~18 MB | JSON | [Commercial (€699)](https://ethno-api.com) |
|
| 212 |
+
| `ethno_dataset_2026_v2.parquet` | ~900 KB | Parquet | [Commercial (€699)](https://ethno-api.com) |
|
| 213 |
+
| `MANIFEST_v2.json` | ~1 KB | JSON | Included with purchase |
|
| 214 |
+
| `quickstart.ipynb` | 6 KB | Notebook | Free (this repo) |
|
| 215 |
|
| 216 |
+
## Data Sources & Methodology
|
| 217 |
|
| 218 |
+
| Source | Access | Date | Method |
|
| 219 |
+
|--------|--------|------|--------|
|
| 220 |
+
| [USDA Dr. Duke's Phytochemical and Ethnobotanical Databases](https://phytochem.nal.usda.gov/) | Public domain | 2026 | Full 16-table PostgreSQL import, normalized |
|
| 221 |
+
| [NCBI PubMed](https://pubmed.ncbi.nlm.nih.gov/) | E-utilities API | March 2026 | `esearch` per compound, total publication count |
|
| 222 |
+
| [ClinicalTrials.gov](https://clinicaltrials.gov/) | v2 API | March 2026 | Study count per compound name |
|
| 223 |
+
| [ChEMBL](https://www.ebi.ac.uk/chembl/) | REST API (v34) | March 2026 | Bioactivity measurement count via molecule search |
|
| 224 |
+
| [USPTO PatentsView](https://patentsview.org/) | REST API v1 (`search.patentsview.org/api/v1/patent/`) with `X-Api-Key` header, querying US patent counts since 2020-01-01 | March 2026 | US patents since 2020-01-01 mentioning compound |
|
| 225 |
|
| 226 |
+
All enrichment scripts are deterministic, checkpoint-resumable, and respect API rate limits. Source code available upon request for enterprise customers.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 227 |
|
| 228 |
+
## Use Cases
|
| 229 |
|
| 230 |
+
- **RAG Pipelines** — Ground LLM responses with verified phytochemical data. Each record has a PubMed evidence score — use it to weight retrieval results and filter hallucinations.
|
| 231 |
+
- **Drug Discovery** — Prioritise natural product leads by combining PubMed citations, clinical trial presence, ChEMBL bioactivity depth, and patent landscape. One query replaces weeks of manual lit review.
|
| 232 |
+
- **Market Intelligence** — Patent density score reveals which compounds are attracting commercial investment. Cross-reference with clinical trials to identify underexplored compounds with IP whitespace.
|
| 233 |
+
- **Academic Research** — Pre-computed evidence scores save months of PubMed searching. The BibTeX citation block below makes this dataset citable in peer-reviewed publications.
|
| 234 |
|
| 235 |
+
## Dataset Versions
|
| 236 |
|
| 237 |
+
| Version | Records | Schema | Status |
|
| 238 |
+
|---------|--------:|--------|--------|
|
| 239 |
+
| v1.0 | 104,388 | 5 columns (USDA baseline) | Deprecated |
|
| 240 |
+
| **v2.0** | **104,388** | **8 columns (+ PubMed, ClinicalTrials, ChEMBL, Patents)** | **Current** |
|
| 241 |
|
| 242 |
+
The free sample (`ethno_sample_400.json`) uses the v2.0 schema.
|
| 243 |
+
Enrichment fields contain representative values pending completion of the full enrichment pipeline.
|
| 244 |
|
| 245 |
+
## License & Commercial Access
|
| 246 |
|
| 247 |
+
- **Free 400-row sample**: [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) — use for evaluation, academic research, and prototyping.
|
| 248 |
+
- **Full 104,388-row dataset**: Single-entity commercial license, **€699 one-time purchase** at [ethno-api.com](https://ethno-api.com). Redistribution, resale, and derivative dataset publication are prohibited.
|
| 249 |
|
| 250 |
## Citation
|
| 251 |
|
| 252 |
```bibtex
|
| 253 |
+
@misc{ethno_api_v2_2026,
|
| 254 |
+
title = {USDA Phytochemical \& Ethnobotanical Database --- Enriched v2.0},
|
| 255 |
+
author = {Wirth, Alexander},
|
| 256 |
+
year = {2026},
|
| 257 |
+
publisher = {Ethno-API},
|
| 258 |
+
url = {https://ethno-api.com},
|
| 259 |
+
note = {104,388 records, 24,771 unique chemicals, 2,315 plant species, 8-column schema with PubMed, ClinicalTrials, ChEMBL, and PatentsView enrichment}
|
| 260 |
}
|
| 261 |
```
|
| 262 |
|
| 263 |
+
## Contact
|
| 264 |
|
| 265 |
+
- **Website**: [ethno-api.com](https://ethno-api.com)
|
| 266 |
+
- **Email**: founder@ethno-api.com
|
| 267 |
+
- **GitHub**: [@wirthal1990-tech](https://github.com/wirthal1990-tech)
|
| 268 |
|
| 269 |
---
|
| 270 |
|
| 271 |
+
<div align="center">
|
| 272 |
+
<sub>Built by Alexander Wirth · PostgreSQL 15 · Python 3.12 · Hetzner CCX33</sub>
|
| 273 |
+
</div>
|
|
|