Grounded honey recommendations: send a flavor/use/occasion intent, receive ranked varietie
Grounded honey recommendations: send a flavor/use/occasion intent, receive ranked varieties chosen from Melvea's proprietary flavor, terroir, and scoring corpus — each with a grounded reason. Recommends on taste and use, not health.
100000 (raw units)
price
1
calls / 30d
1
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": "0x7a9B696F3bec23eEF6fc278AdB922d0334A213c4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"intent": "mild floral honey for a holiday gift",
"max_results": 3
},
"bodyType": "json",
"discoverable": true,
"method": "POST",
"type": "http"
},
"output": {
"example": {
"intent": "mild floral honey for a holiday gift",
"results": [
{
"reason": "Delicate, light floral profile; a mild crowd-pleaser well suited to gifting.",
"slug": "acacia",
"variety_name": "Acacia"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"intent": {
"description": "Free-text flavor/use/occasion intent",
"type": "string"
},
"max_results": {
"description": "Optional, default 3, max 5",
"type": "number"
}
},
"required": [
"intent"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"discoverable": {
"const": true,
"type": "boolean"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"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/recommend" # -> 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/recommend");
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/recommend")
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/6301.json, and this resource appears in /discovery/resources and /discovery/search.