Conversion Utilities

Milliliters To Fluid Ounces

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.

API Endpoint

GET /v1/convert/volume/ml-to-fl-oz

Code Examples

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)

Use via MCP

Add to your AI agent

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"
      }
    }
  }
}

Learn more about MCP setup →

FAQ

How do I convert 500ml to fluid ounces using MCP?

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.

What's the exact conversion ratio from ml to fluid ounces?

1 US fluid ounce equals exactly 29.5735296875 milliliters. This tool uses the precise FDA-defined ratio, not rounded approximations.

Can I convert fractional milliliter values?

Yes, the tool accepts decimal inputs like 125.5ml and returns precise fluid ounce equivalents with full decimal precision.

How does this differ from imperial fluid ounces?

This converts to US fluid ounces only. Imperial fluid ounces are larger (28.4131ml each) and require a different conversion tool.

What's the API response format for ml to fl oz conversion?

Returns JSON with the original ml value and converted fl_oz value as numbers, plus the conversion factor used for the calculation.

Try Milliliters To Fluid Ounces Now

Get your free API key and start using Milliliters To Fluid Ounces in seconds.

Get Free API Key