{
  "x402Version": 2,
  "id": 2569,
  "slug": "2569",
  "resource": "https://apiacre.com/v1/data/timezone-convert",
  "description": "Convert an offset-aware ISO 8601 instant or a local wall time between IANA time zones with explicit DST gap and repeated-hour handling, nearby transition evidence, and a pinned local time-zone database.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xa0BFa4f07281c9b248DC3AED2217836BcA24869B",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "1000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "B4CHWQeQn7GDLZD2aW6hpGG2bEseisBFLZYECA3HDLan",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "1000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "ambiguous_time": "later",
            "include_transitions": true,
            "source_timezone": "America/New_York",
            "target_timezone": "Europe/London",
            "timestamp": "2026-11-01T01:30:00"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "data": {
              "database": {
                "databaseUrl": "https://www.iana.org/time-zones",
                "ianaRelease": "2026c",
                "provider": "IANA Time Zone Database",
                "tzdataPackageVersion": "2026.3"
              },
              "input": {
                "inputOffset": null,
                "offsetAware": false,
                "sourceTimezone": "America/New_York",
                "timestamp": "2026-11-01T01:30:00"
              },
              "instant": {
                "unixMilliseconds": 1793514600000,
                "unixSeconds": 1793514600,
                "utc": "2026-11-01T06:30:00Z"
              },
              "interpretation": {
                "disambiguationApplied": "later",
                "status": "ambiguous_later"
              },
              "limitations": [
                "IANA time zones represent civil-time rules for representa...",
                "Governments can change future offset and daylight-saving ...",
                "Leap seconds are not represented by Python datetime or th...",
                "Naive nonexistent local times are rejected, and repeated ..."
              ],
              "offsetDifferenceSeconds": 18000,
              "source": {
                "isIana": true,
                "localTime": "2026-11-01T01:30:00-05:00",
                "timezone": "America/New_York",
                "utcOffset": "-05:00"
              },
              "target": {
                "isIana": true,
                "localTime": "2026-11-01T06:30:00Z",
                "timezone": "Europe/London",
                "utcOffset": "+00:00"
              },
              "transitions": {
                "source": {
                  "next": {
                    "atUtc": "2027-03-14T07:00:00Z",
                    "localAfter": "2027-03-14T03:00:00-04:00",
                    "localBefore": "2027-03-14T01:59:59-05:00",
                    "offsetBeforeSeconds": -18000
                  },
                  "previous": {
                    "atUtc": "2026-11-01T06:00:00Z",
                    "localAfter": "2026-11-01T01:00:00-05:00",
                    "localBefore": "2026-11-01T01:59:59-04:00",
                    "offsetBeforeSeconds": -14400
                  }
                },
                "target": {
                  "next": {
                    "atUtc": "2027-03-28T01:00:00Z",
                    "localAfter": "2027-03-28T02:00:00+01:00",
                    "localBefore": "2027-03-28T00:59:59Z",
                    "offsetBeforeSeconds": 0
                  },
                  "previous": {
                    "atUtc": "2026-10-25T01:00:00Z",
                    "localAfter": "2026-10-25T01:00:00Z",
                    "localBefore": "2026-10-25T01:59:59+01:00",
                    "offsetBeforeSeconds": 3600
                  }
                }
              }
            },
            "meta": {
              "cached": false,
              "duration_ms": 42,
              "next_actions": [],
              "sources": [],
              "warnings": []
            },
            "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
            "service": "data.timezone-convert",
            "version": "1"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "ambiguous_time": {
                    "enum": [
                      "reject",
                      "earlier",
                      "later"
                    ],
                    "type": "string"
                  },
                  "include_transitions": {
                    "type": "boolean"
                  },
                  "source_timezone": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "target_timezone": {
                    "type": "string"
                  },
                  "timestamp": {
                    "type": "string"
                  }
                },
                "required": [
                  "timestamp",
                  "target_timezone"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST",
                  "PUT",
                  "PATCH"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "data": {
                    "additionalProperties": false,
                    "properties": {
                      "database": {
                        "type": "object"
                      },
                      "input": {
                        "type": "object"
                      },
                      "instant": {
                        "type": "object"
                      },
                      "interpretation": {
                        "type": "object"
                      },
                      "limitations": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "offsetDifferenceSeconds": {
                        "type": "integer"
                      },
                      "source": {
                        "type": "object"
                      },
                      "target": {
                        "type": "object"
                      },
                      "transitions": {
                        "anyOf": [
                          {
                            "type": "object"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      }
                    },
                    "required": [
                      "input",
                      "interpretation",
                      "instant",
                      "source",
                      "target",
                      "offsetDifferenceSeconds",
                      "transitions",
                      "database",
                      "limitations"
                    ],
                    "type": "object"
                  },
                  "meta": {
                    "properties": {
                      "cached": {
                        "type": "boolean"
                      },
                      "duration_ms": {
                        "type": "integer"
                      },
                      "next_actions": {
                        "items": {
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "sources": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "warnings": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      }
                    },
                    "required": [
                      "duration_ms",
                      "cached",
                      "sources",
                      "warnings",
                      "next_actions"
                    ],
                    "type": "object"
                  },
                  "request_id": {
                    "type": "string"
                  },
                  "service": {
                    "type": "string"
                  },
                  "version": {
                    "type": "string"
                  }
                },
                "required": [
                  "request_id",
                  "service",
                  "version",
                  "data",
                  "meta"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    },
    "payment-identifier": {
      "info": {
        "required": false
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "id": {
            "maxLength": 128,
            "minLength": 16,
            "pattern": "^[a-zA-Z0-9_-]+$",
            "type": "string"
          },
          "required": {
            "type": "boolean"
          }
        },
        "required": [
          "required"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar",
    "payment-identifier"
  ],
  "sourceHost": "apiacre.com",
  "lastUpdated": "2026-09-01T13:12:29.444Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-01T13:12:28.784Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "apiacre.com",
    "manifest_name": "apiacre.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}