Abstract API · Schema

ConvertResponse

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
base_currency string Source currency code
target_currency string Target currency code
base_amount number Original amount
converted_amount number Converted amount
View JSON Schema on GitHub

JSON Schema

abstract-api-convertresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConvertResponse",
  "title": "ConvertResponse",
  "type": "object",
  "properties": {
    "base_currency": {
      "type": "string",
      "description": "Source currency code",
      "example": "USD"
    },
    "target_currency": {
      "type": "string",
      "description": "Target currency code",
      "example": "EUR"
    },
    "base_amount": {
      "type": "number",
      "description": "Original amount",
      "example": 100
    },
    "converted_amount": {
      "type": "number",
      "description": "Converted amount",
      "example": 92.34
    }
  }
}