# Milliliters to Liters Converter

> Milliliters to Liters Converter is a paid API for AI agents from agent402.tools, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Converts a numeric volume value from milliliters (mL) to liters (L) via a simple GET request with a query parameter.

## Facts

- Endpoint: GET https://agent402.tools/api/convert/milliliters-to-liters
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/milliliters-to-liters-converter-6fdd91db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A5XIaiQcn_6teqLJT75Iv

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability milliliters-to-liters-converter-6fdd91db
```

Example prompt: Can you convert 750 milliliters to liters for me?

## When to prefer this

Use this endpoint when you need a quick, programmatic milliliters-to-liters conversion without implementing the math locally, especially in automated pipelines or agent workflows that already use the agent402.tools ecosystem for other unit conversions.

## Known failure modes

- Missing required 'value' query parameter returns an error
- Non-numeric value passed to 'value' parameter causes a validation or parsing error
- Very large or very small numbers may return unexpected floating point results
- Service unavailability returns a non-200 HTTP status

## How this service works

Convert milliliters to liters (volume). Pass ?value=N.

## Output

The agent receives the converted numeric value representing the input milliliters expressed in liters (e.g., 750 mL → 0.75 L).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "value"
     ],
     "properties": {
      "value": {
       "type": "string",
       "description": "Numeric value to convert"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/milliliters-to-liters-converter-6fdd91db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
