Converts milliliters to US fluid ounces with precise decimal accuracy. Use via MCP in Cursor or Windsurf for instant volume conversions, or call GET /v1/convert/volume/ml-to-fl-oz with your ml value. Returns exact conversions using the standard 29.5735296875 ml per fluid ounce ratio — essential for recipe scaling and lab measurements.
curl "https://tinyfn.io/v1/convert/volume/ml-to-fl-oz" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/convert/volume/ml-to-fl-oz', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/convert/volume/ml-to-fl-oz',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's conversion tools:
{
"mcpServers": {
"tinyfn-conversion": {
"url": "https://tinyfn.io/mcp/conversion",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Call the tool with ml=500 and get 16.907 fl oz. MCP tools in Claude Code and Cursor handle the conversion instantly without manual calculation.
1 US fluid ounce equals exactly 29.5735296875 milliliters. This tool uses the precise FDA-defined ratio, not rounded approximations.
Yes, the tool accepts decimal inputs like 125.5ml and returns precise fluid ounce equivalents with full decimal precision.
This converts to US fluid ounces only. Imperial fluid ounces are larger (28.4131ml each) and require a different conversion tool.
Returns JSON with the original ml value and converted fl_oz value as numbers, plus the conversion factor used for the calculation.
Get your free API key and start using Milliliters To Fluid Ounces in seconds.
Get Free API Key