Japanese dream-interpretation agent API
Japanese dream-interpretation agent API. Returns a Gemini-generated full interpretation from madoromi's curated dream-motif knowledge base (result schema agent-dream-insight.full.v1). Japanese output only. Dream text is never stored or logged. Async by default: the paid POST returns a job id in seconds; fetch the result with a plain free HTTP GET (no x402 client) at /api/agent/interpret/result/{job_id} (ready in ~15s). options.sync=true for one sync response (10-20s; client timeout 60s+).
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://madoromi.fun/api/agent/interpret/full
| Category | Everything else |
|---|---|
| Provider host | madoromi.fun |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 8 from 7 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 848 ms |
Example input (from the provider)
{
"body": {
"dream": "\u6d77\u3067\u6cf3\u3044\u3067\u3044\u308b\u5922\u3092\u898b\u307e\u3057\u305f\u3002",
"output_language": "ja"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"dream": {
"maxLength": 1600,
"minLength": 4,
"type": "string"
},
"options": {
"properties": {
"sync": {
"type": "boolean"
}
},
"type": "object"
},
"output_language": {
"enum": [
"ja"
],
"type": "string"
},
"persona": {
"type": "string"
}
},
"required": [
"dream"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"job": {
"properties": {
"expires_in_seconds": {
"type": "integer"
},
"id": {
"type": "string"
},
"poll_after_seconds": {
"type": "integer"
},
"result_schema_version": {
"type": "string"
},
"result_url": {
"type": "string"
},
"status": {
"const": "processing",
"type": "string"
},
"tier": {
"enum": [
"full",
"deep"
],
"type": "string"
}
},
"required": [
"id",
"status",
"result_url"
],
"type": "object"
},
"mode": {
"const": "async",
"type": "string"
},
"note": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"schema_version": {
"const": "agent-dream-insight.job.v1",
"type": "string"
}
},
"required": [
"ok",
"schema_version",
"mode",
"job"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}