Conversion Utilities

Fahrenheit To Celsius

Convert Fahrenheit temperatures to Celsius with precise decimal results. Access via MCP in Cursor or Windsurf, or call GET /v1/convert/temperature/f-to-c directly. Pass 98.6°F and get 37.0°C back instantly. Uses the standard formula (F-32)×5/9 for accurate scientific calculations.

API Endpoint

GET /v1/convert/temperature/f-to-c

Code Examples

curl "https://tinyfn.io/v1/convert/temperature/f-to-c" \
  -H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/convert/temperature/f-to-c', {
  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/temperature/f-to-c',
    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 Fahrenheit to Celsius in my AI coding assistant?

Use the MCP tool in Cursor, Windsurf, or other supported editors. The AI agent will call the conversion function and return the exact Celsius value without rounding errors.

What's the REST API endpoint for Fahrenheit to Celsius conversion?

GET /v1/convert/temperature/f-to-c with the Fahrenheit value as a parameter. Returns JSON with the precise Celsius result.

Does the converter handle negative Fahrenheit temperatures?

Yes, it converts any Fahrenheit value including negatives. -40°F converts to exactly -40.0°C, and 0°F becomes -17.777...°C.

How precise are the Celsius conversion results?

Results use full floating-point precision with the standard (F-32)×5/9 formula. No rounding is applied unless you specify it in your application logic.

Can I batch convert multiple Fahrenheit temperatures at once?

This endpoint converts single values. For batch operations, make multiple API calls or check if TinyFn offers a dedicated batch conversion tool.

Try Fahrenheit To Celsius Now

Get your free API key and start using Fahrenheit To Celsius in seconds.

Get Free API Key