Parse ambiguous date strings into ISO 8601. Handles '3/4/25', 'March 4th', '4. m...
https://api.strale.io/x402/v2/date-parseOverview
Parse ambiguous date strings into ISO 8601. Handles '3/4/25', 'March 4th', '4. mars 2025', '2025-W14'. Detects ambiguity.
Protocol
x402
Price
$0.03
Payment Asset
USD Coin
Payment Network
eip155:8453
Category
uncategorized
Provider
strale
Source
bazaar
Indexed
2026-08-27 16:12:43
Health
Status
unknown
Latency (p50)
—
Uptime (30d)
—
Reliability Score
—
Last Checked
Never
Last Healthy
Never
Consecutive Failures
0
x402 Payment Validation
Payment Requirements
—
Asset Verified
—
Facilitator
—
Input Schema
{
"discoverable": true,
"method": "GET",
"queryParams": {
"date_string": {
"description": "Date string to parse",
"required": true,
"type": "string"
},
"preferred_format": {
"description": "DMY, MDY, or YMD (for ambiguous dates)",
"type": "string"
}
},
"type": "http"
}
Output Schema
{
"day": {
"type": "integer"
},
"day_of_week": {
"type": "string"
},
"is_ambiguous": {
"type": "boolean"
},
"iso_date": {
"type": "string"
},
"month": {
"type": "integer"
},
"year": {
"type": "integer"
}
}