Money / amount parsing API
Absorbs currency symbols, 円, digit separators and full-width digits into a clean number plus detected currency. No FX conversion (pure logic).
Endpoint
| Method | Path |
|---|---|
GET | /api/v1/money/parse |
Example
curl "https://formfit.dev/api/v1/money/parse?amount=1,000円" \
-H "Authorization: Bearer YOUR_API_KEY"
Response (excerpt)
{"value":1000,"currency":"JPY","valid":true}
FAQ
- Does it convert between currencies?
- No — parsing and currency detection only.