# Strale Financial Year Dates API

> Strale Financial Year Dates API is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0216/call, status unknown (last checked 2026-09-14).

Returns the financial (fiscal) year start and end dates for a given country by ISO 2-letter country code.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/financial-year-dates
- Price: $0.0216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-financial-year-dates-api-348603e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TGcZ77ZLaTMTI3iSWukbb

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 strale-financial-year-dates-api-348603e3
```

Example prompt: What are the financial year start and end dates for Australia? I need the official fiscal year boundaries for AU.

## When to prefer this

Choose this endpoint when you need authoritative fiscal/financial year boundary dates for a specific country, particularly for accounting, payroll, tax compliance, or cross-border financial planning workflows. It is ideal for agents that need to align reporting periods, automate tax filing schedules, or onboard clients in multiple jurisdictions. Covers 27 countries with independently tested data and returns a cryptographic audit record for compliance traceability.

## Known failure modes

- Invalid or unsupported country code returns an error — only ISO 2-letter codes for supported countries are accepted
- Country not in the 27-country coverage set returns a not-found or unsupported error
- Missing required query parameter 'country_code' results in a 400 bad request
- Network or upstream data source unavailability may return a 5xx error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns the official financial (fiscal) year start date and end date for the requested country, along with the country code and any relevant metadata about the fiscal calendar period. The response includes a cryptographic audit record with chain hashing for traceability.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country_code"
     ],
     "properties": {
      "country_code": {
       "type": "string",
       "description": "ISO 2-letter country code"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-financial-year-dates-api-348603e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
