{
  "x402Version": 2,
  "id": 5302,
  "slug": "5302",
  "resource": "https://x402stock.xyz/api/v1/dividend-calendar",
  "description": "Market-wide dividend calendar (no ticker needed). Per row: ticker, ex-dividend / record / pay / declaration dates, cash amount per share, currency, type, payments-per-year `frequency` + `frequency_label` (quarterly, monthly, weekly, one-time), and computed `annualized_amount`. Upcoming payments first. Filter `?from=`/`?to=` on ex-date, `?ticker=`, `?frequency=`, `?order=`, `?limit=`.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "limit": 50,
            "order": "asc"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "as_of": "2026-07-30T14:00:00.000Z",
            "count": 2,
            "dividends": [
              {
                "annualized_amount": 0.8916,
                "cash_amount": 0.0743,
                "currency": "USD",
                "declaration_date": "2026-04-24",
                "dividend_type": "CD",
                "ex_dividend_date": "2026-07-30",
                "frequency": 12,
                "frequency_label": "monthly",
                "pay_date": "2026-07-31",
                "record_date": "2026-07-30",
                "ticker": "AMAX"
              },
              {
                "annualized_amount": 1.08,
                "cash_amount": 0.27,
                "currency": "USD",
                "declaration_date": "2026-07-30",
                "dividend_type": "CD",
                "ex_dividend_date": "2026-08-10",
                "frequency": 4,
                "frequency_label": "quarterly",
                "pay_date": "2026-08-13",
                "record_date": "2026-08-10",
                "ticker": "AAPL"
              }
            ],
            "source": "x402stock"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET",
                  "HEAD",
                  "DELETE"
                ],
                "type": "string"
              },
              "queryParams": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "additionalProperties": false,
                "properties": {
                  "frequency": {
                    "maximum": 52,
                    "minimum": 0,
                    "type": "integer"
                  },
                  "from": {
                    "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
                    "type": "string"
                  },
                  "limit": {
                    "default": 50,
                    "exclusiveMinimum": 0,
                    "maximum": 1000,
                    "type": "integer"
                  },
                  "order": {
                    "default": "asc",
                    "enum": [
                      "asc",
                      "desc"
                    ],
                    "type": "string"
                  },
                  "ticker": {
                    "maxLength": 16,
                    "type": "string"
                  },
                  "to": {
                    "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
                    "type": "string"
                  }
                },
                "required": [
                  "order",
                  "limit"
                ],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "additionalProperties": false,
                "properties": {
                  "as_of": {
                    "type": "string"
                  },
                  "count": {
                    "type": "number"
                  },
                  "dividends": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "annualized_amount": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "cash_amount": {
                          "type": "number"
                        },
                        "currency": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "declaration_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "dividend_type": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "ex_dividend_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "frequency": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "frequency_label": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "pay_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "record_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "ticker": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "ticker",
                        "ex_dividend_date",
                        "pay_date",
                        "record_date",
                        "declaration_date",
                        "cash_amount",
                        "currency",
                        "dividend_type",
                        "frequency",
                        "frequency_label",
                        "annualized_amount"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "source": {
                    "const": "x402stock",
                    "type": "string"
                  }
                },
                "required": [
                  "source",
                  "as_of",
                  "count",
                  "dividends"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402stock.xyz",
  "lastUpdated": "2026-09-14T19:00:05.35Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-14T19:00:05.118Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402stock.xyz",
    "manifest_name": "x402stock.xyz",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}