# Avent Tech Currency Converter

> Avent Tech Currency Converter is a paid API for AI agents from api.aventtech.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Converts a monetary amount from one ISO 4217 currency to another, returning the exchange rate and converted result

## Facts

- Endpoint: GET https://api.aventtech.com/convert/currency
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avent-tech-currency-converter-e1a16bf1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5uSEkl-Yam_spzCzwi0sN

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 avent-tech-currency-converter-e1a16bf1
```

Example prompt: What's 250 USD worth in GBP right now? Convert it and give me the exchange rate.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call currency conversion with a clear ISO 4217 interface and a dated exchange rate. It is well-suited for agents that need spot-rate conversions for financial summaries, invoicing, or reporting without requiring an API key subscription.

## Known failure modes

- Invalid or unsupported ISO 4217 currency code returns an error
- Missing required query parameters (amount, from, to) returns a 400-level error
- Amount not parseable as a number may cause a validation error
- Stale or unavailable rate data may return an older rateDate

## How this service works

Unified digital experiences for Mega Yachts, Executive Spaces, and Luxury Residences. Athens-based, nationwide projects.

## Output

Returns a JSON object with the source currency (from), target currency (to), the exchange rate (rate), the original amount, the converted result, and the date the rate was fetched (rateDate).

## 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",
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "ISO 4217 code"
      },
      "from": {
       "type": "string",
       "description": "ISO 4217 code"
      },
      "amount": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "GBP",
  "from": "USD",
  "rate": 0.7367,
  "amount": 100,
  "result": 73.67,
  "rateDate": "2026-07-23"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avent-tech-currency-converter-e1a16bf1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aventtech.com](https://www.zero.xyz/host/api.aventtech.com/llms.txt)
