# Melvea Honey Variety Citations API

> Melvea Honey Variety Citations API is a paid API for AI agents from api.melvea.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns verified bibliographic references (DOI/PMID) backing the compositional and sensory data for a specific honey variety

## Facts

- Endpoint: GET https://api.melvea.com/v1/varieties/:slug/citations
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/melvea-honey-variety-citations-api-2ad6ef87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o6ohhsRlUzpTf1aAt39tC

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability melvea-honey-variety-citations-api-2ad6ef87
```

Example prompt: Can you pull up the verified scientific citations — with DOIs or PMIDs — that back the compositional and sensory data for manuka honey on Melvea?

## When to prefer this

Use this endpoint when you need to verify or cite the scientific basis behind a specific honey variety's data — such as when building a research report, fact-checking honey product claims, or linking users to primary sources. Prefer this over general web search when you need pre-vetted, DOI/PMID-resolvable citations specific to honey varieties.

## Known failure modes

- Invalid or unknown honey variety slug returns 404 not found
- Missing slug parameter results in routing error
- Payment failure (x402) blocks access if USDC payment not processed
- Rate limiting may apply if too many requests are made in succession
- Variety exists but has no citations yet returns empty array

## How this service works

Per-variety research citations backing a honey variety's compositional and sensory data — verified, Rule-11-clear, each resolvable to a real published source (DOI/PMID). Bibliographic records only.

## Output

A list of bibliographic records for peer-reviewed, Rule-11-cleared publications supporting the specified honey variety's compositional and sensory data, each with a resolvable DOI or PMID identifier.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "slug": "manuka"
  },
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    },
    "discoverable": {
     "type": "boolean",
     "const": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/melvea-honey-variety-citations-api-2ad6ef87/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.melvea.com](https://www.zero.xyz/host/api.melvea.com/llms.txt)
