action exchangerate_api_get_latest_base_currency { label: "Returns latest exchange rates in parameter-supplied base currency." provider: exchangerate_api method: GET path: "/latest/{base_currency}" encoding: json input: { type: "object" properties: { base_currency: { type: "string" } } required: ["base_currency"] additionalProperties: false } output: { type: "object" properties: { base: { type: "string" description: "The currency code you supplied as base in your request" } date: { type: "string" description: "The date these exchange rates are for" } rates: { type: "object" description: "Each supported currency code in terms of the base currency" } time_last_updated: { type: "integer" description: "The epoch time this set of exchange rates was generated" } } } }