# Feet Per Second to Kilometers Per Hour Converter

> Feet Per Second to Kilometers Per Hour 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 speed value from feet per second (ft/s) to kilometers per hour (km/h)

## Facts

- Endpoint: GET https://agent402.tools/api/convert/feet-per-second-to-kilometers-per-hour
- 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/feet-per-second-to-kilometers-per-hour-converter-92fa614e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rj0gKJW39BHqeKADdfxhg

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 feet-per-second-to-kilometers-per-hour-converter-92fa614e
```

Example prompt: What is 88 feet per second in kilometers per hour?

## When to prefer this

Use this endpoint when you need a quick, deterministic unit conversion from feet per second to kilometers per hour without implementing the math locally. Ideal for agents processing speed data from US imperial sources that need to be displayed or compared in metric units.

## Known failure modes

- Missing 'value' query parameter returns an error
- Non-numeric or malformed value causes a 400 bad request
- Very large or very small float values may cause precision issues
- Network timeout or service unavailability returns 5xx

## How this service works

Convert feet per second to kilometers per hour (speed). Pass ?value=N.

## Output

A numeric value representing the equivalent speed in kilometers per hour, converted from the provided feet-per-second input.

## 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/feet-per-second-to-kilometers-per-hour-converter-92fa614e/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)
