# Japanese Regional Specialty Food Guide

> Japanese Regional Specialty Food Guide is a paid API for AI agents from jp-data-api-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a curated guide of Japanese regional specialty foods — iconic dishes like sushi, ramen, wagyu, curry, and gyoza — with type, origin prefecture, description, and where to find them, searchable by dish keyword.

## Facts

- Endpoint: GET https://jp-data-api-production.up.railway.app/food/regional
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japanese-regional-specialty-food-guide-90dc59f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OQUlIawtKkK3TZ5Uaygud

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 japanese-regional-specialty-food-guide-90dc59f2
```

Example prompt: What are the iconic regional specialty foods of Japan? I'm planning a food-focused trip and want to know which dishes are famous, where they originated, and where I can find them — feel free to search for 'ramen' specifically or just list everything.

## When to prefer this

Use this endpoint when building Japan travel itineraries, food guides, or restaurant discovery experiences that require structured, curated data about regional Japanese dishes in English. Prefer this over generic web search when you need structured prefecture-level food origin data with consistent formatting suitable for trip planning agents or food recommendation systems.

## Known failure modes

- No results returned if the keyword 'q' doesn't match any known dish — agent should retry with a broader or alternate term
- If 'q' param is omitted and the dataset is large, the response may include many entries requiring client-side filtering
- Payment not processed (x402 flow failure) — agent must handle 402 response and retry with valid payment
- Network timeout on Railway-hosted service — agent should retry with exponential backoff

## How this service works

Japanese regional specialty food guide (English): iconic dishes like sushi, ramen, wagyu, curry, gyoza by type, origin prefecture, description, and where to find them. Curated for inbound travel agents, food guides, trip planners, restaurant discovery context.

## Output

A curated list of Japanese regional specialty foods, each with the dish name, food type (e.g. noodles, grilled meat), origin prefecture, a description of the dish, and guidance on where to find it — filterable by a dish keyword query parameter.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "dish keyword, or omit to list all"
      }
     }
    }
   },
   "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/japanese-regional-specialty-food-guide-90dc59f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jp-data-api-production.up.railway.app](https://www.zero.xyz/host/jp-data-api-production.up.railway.app/llms.txt)
