# Japanese Gotobi Calendar API

> Japanese Gotobi Calendar API is a paid API for AI agents from abi-mainnet-sandbox.benjaminbu.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns whether a given date falls on a Japanese gotobi day (5th, 10th, 15th, 20th, 25th, or 30th of the month), which are traditionally busy payment settlement days in Japan.

## Facts

- Endpoint: GET https://abi-mainnet-sandbox.benjaminbu.workers.dev/v1/jp/gotobi
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japanese-gotobi-calendar-api-b31ce573
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SQT-F8Ohu2BU0PL6meNFn

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-gotobi-calendar-api-b31ce573
```

Example prompt: Is May 25, 2025 a gotobi day on the Japanese business calendar?

## When to prefer this

Use this endpoint when you need to determine whether a specific date falls on a Japanese gotobi day for purposes of payment scheduling, staffing, financial planning, or logistics in Japan. Prefer this over general business-day calculators (also available on the same host) when the specific gotobi cycle — not just weekday vs. weekend — is the relevant factor.

## Known failure modes

- Invalid date format (not YYYY-MM-DD) may return an error or empty result
- Missing date parameter may default to today or return an error
- Dates outside supported range may return unexpected results
- Network or worker availability issues may cause timeout

## How this service works

Japanese gotobi calendar

## Output

Returns information about whether the queried date is a gotobi day — one of the traditional Japanese payment settlement dates (5th, 10th, 15th, 20th, 25th, or 30th of the month). Response typically includes the date and its gotobi classification status.

## 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": {
      "date": {
       "type": "string",
       "description": "Date in YYYY-MM-DD format"
      }
     }
    }
   },
   "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-gotobi-calendar-api-b31ce573/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from abi-mainnet-sandbox.benjaminbu.workers.dev](https://www.zero.xyz/host/abi-mainnet-sandbox.benjaminbu.workers.dev/llms.txt)
