mirrored listing x402 eip155:8453

TARGET2/T2 settlement calendar — the SEPA banking calendar, to predict when a euro transfe

TARGET2/T2 settlement calendar — the SEPA banking calendar, to predict when a euro transfer settles. TARGET is closed on weekends + six fixed days (New Year, Good Friday, Easter Monday, 1 May, 25 & 26 Dec). ?year= lists the closing days; ?date= says whether it settles (and the next open day); ?date=&addBusinessDays=N returns the value date N settlement days away. The SEPA counterpart of /v1/business-days.

Do you run 402utils.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-24
updated

Provider

402utils.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xc55A2D530b53CBaD1001e4AfD4720B7E71f9C291",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "addBusinessDays": 1,
          "date": "2026-04-03"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "addBusinessDays": 1,
          "asOf": "2026-07-06",
          "date": "2026-04-03",
          "note": "2026-04-03 is Good Friday and 2026-04-06 Easter Monday, both TARGET closing days.",
          "result": "2026-04-07",
          "resultWeekday": "Tuesday",
          "source": "https://www.ecb.europa.eu/paym/target/t2/html/index.en.html",
          "weekday": "Friday"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "description": "Provide ?year= OR ?date= (optionally with ?addBusinessDays=).",
              "properties": {
                "addBusinessDays": {
                  "description": "With ?date=: shift by N TARGET settlement days (sign = direction, |N| ≤ 3660).",
                  "type": "integer"
                },
                "date": {
                  "description": "A date YYYY-MM-DD — check whether it is a settlement day.",
                  "type": "string"
                },
                "year": {
                  "description": "Calendar year (1999-2100) — list its closing days.",
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "addBusinessDays": {
                  "type": "integer"
                },
                "asOf": {
                  "format": "date",
                  "type": "string"
                },
                "closed": {
                  "type": "boolean"
                },
                "date": {
                  "type": "string"
                },
                "holiday": {
                  "description": "When closed for a holiday: its name.",
                  "type": "string"
                },
                "holidays": {
                  "description": "Year mode: the six fixed TARGET closing days.",
                  "items": {
                    "properties": {
                      "date": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      },
                      "weekday": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "date",
                      "name",
                      "weekday"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "isSettlementDay": {
                  "description": "Date mode: TARGET is open on this day.",
                  "type": "boolean"
                },
                "nextSettlementDay": {
                  "description": "Date mode: the next open day when the given date is closed.",
                  "type": "string"
                },
                "note": {
                  "type": "string"
                },
                "reason": {
                  "description": "When closed: 'weekend' or 'holiday'.",
                  "type": "string"
                },
                "result": {
                  "description": "Shift mode: the settlement date N days from the input.",
                  "type": "string"
                },
                "resultWeekday": {
                  "type": "string"
                },
                "settlementDays": {
                  "description": "Year mode: number of open (settlement) days in the year.",
                  "type": "integer"
                },
                "source": {
                  "format": "uri",
                  "type": "string"
                },
                "weekday": {
                  "type": "string"
                },
                "year": {
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://402utils.com/v1/ecb-calendar"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://402utils.com/v1/ecb-calendar");
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://402utils.com/v1/ecb-calendar")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/5907.json, and this resource appears in /discovery/resources and /discovery/search.