# SGD to USD Currency Converter (Live Rate)

> SGD to USD Currency Converter (Live Rate) is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Converts a specified amount of Singapore Dollars (SGD) to US Dollars (USD) at the current live exchange rate

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/sgd/usd/sgd-usd
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sgd-to-usd-currency-converter-live-rate-e6e08bc9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UA_O7gwRqWBo26H7kJUHW

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 sgd-to-usd-currency-converter-live-rate-e6e08bc9
```

Example prompt: How much is 350 Singapore dollars in US dollars right now?

## When to prefer this

Use this endpoint when you need a precise, real-time SGD to USD conversion with a specific amount. It returns both the rate and the computed result in one call, making it ideal for financial calculations, travel budgeting, or e-commerce pricing that involves Singapore Dollars. Prefer this over generic multi-currency converters when the specific pair is SGD→USD.

## Known failure modes

- Missing or invalid amount parameter returns an error or zero result
- Rate data unavailability if upstream forex provider is down
- Non-numeric amount value causes malformed request error
- Network timeout if the API server is unreachable

## How this service works

Convert SGD to USD at live rate. Pass ?amount=100 for value in US Dollar. 新加坡元兑换美元换算。シンガポールドルを米ドルに換算。Convertir dólar de Singapur a dólar. 싱가포르 달러를 달러로 환전. sgd to usd convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the source currency (from: 'SGD'), target currency (to: 'USD'), the live exchange rate (rate), the input amount, the converted result in USD (result), the timestamp of the rate (as_of), and the data source identifier.

## 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": [
      "amount"
     ],
     "properties": {
      "amount": {
       "type": "string",
       "description": "要换算的金额，如 ?amount=100"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sgd-to-usd-currency-converter-live-rate-e6e08bc9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
