# AGISHub Currency Converter

> AGISHub Currency Converter is a paid API for AI agents from api.agishub.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Converts a monetary amount from one currency to another using live daily exchange rates, returning the converted amount and the rate applied.

## Facts

- Endpoint: GET https://api.agishub.com/v1/currency-convert
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agishub-currency-converter-13df0551
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WLQX7YP9EaLelQhqfrlHh

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 agishub-currency-converter-13df0551
```

Example prompt: Convert 500 USD to EUR using today's live exchange rate and tell me how much I'd get and what rate was used.

## When to prefer this

Choose this endpoint when you need a quick, single-call currency conversion using live daily rates with a simple GET request and a per-call micropayment model. It is well-suited for agents that need to convert amounts on-the-fly without managing API keys or subscriptions.

## Known failure modes

- Invalid or unsupported ISO 4217 currency code returns an error
- Amount not provided or non-numeric value causes a validation error
- Unsupported currency pair may return an error if rate data is unavailable
- Network or rate-feed outage may cause a 5xx error

## How this service works

Convert an amount between currencies using live daily exchange rates (ISO 4217 codes, e.g. USD, EUR, GBP, JPY). Returns the converted amount and the rate used.

## Output

A JSON object containing the converted monetary amount and the live daily exchange rate that was applied for the conversion between the specified source and target currencies.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "amount",
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "maxLength": 3,
       "minLength": 3,
       "description": "Target currency ISO 4217 code, e.g. 'EUR', 'JPY'."
      },
      "from": {
       "type": "string",
       "maxLength": 3,
       "minLength": 3,
       "description": "Source currency ISO 4217 code, e.g. 'USD', 'EUR'."
      },
      "amount": {
       "type": "number",
       "description": "The amount of money to convert."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "Convert an amount between currencies using live daily exchange rates (ISO 4217 codes, e.g. USD, EUR, GBP, JPY). Returns "
 }
}
```

## More

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