Structured varietal data and verifiable research provenance for 150+ honey varieties, incl
Structured varietal data and verifiable research provenance for 150+ honey varieties, including the obscure long tail foundation models get wrong. Every compositional datum resolves to a real, published source (DOI/PMID). Per variety: color grade (USDA Pfund band with measured or estimated source), intensity, flavor profile, texture, use cases, best-for pairing tags, primary and secondary countries, and a citation_count pointing to the paid citations endpoint. Melvea IP only.
50000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-17
updated
Provider
api.melvea.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xF4EfE76FE83E7e2E865CDF4CcF35Ba71f91426C6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"discoverable": true,
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"varieties": [
{
"best_for": [
"raw",
"toast"
],
"citation_count": 5,
"citations_endpoint": "/v1/varieties/manuka/citations",
"color_grade": "Amber",
"color_gradeable": true,
"flavor_profile_enum": "complex",
"intensity_level": "bold",
"name": "Manuka",
"origin_regions": [
"New Zealand"
],
"pfund_source": "measured",
"pfund_value": 95,
"primary_countries": [
"NZL"
],
"secondary_countries": [],
"slug": "manuka",
"texture": "liquid",
"use_cases": [
"raw",
"wellness"
]
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"discoverable": {
"const": true,
"type": "boolean"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.melvea.com/v1/catalog" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.melvea.com/v1/catalog");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.melvea.com/v1/catalog")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6300.json, and this resource appears in /discovery/resources and /discovery/search.