getForexQuote
Retrieve real-time forex quotes for currency pairs using the Forex Quote API. Monitor exchange rates and price changes to track market movements effectively.
Instructions
Access real-time forex quotes for currency pairs with the Forex Quote API. Retrieve up-to-date information on exchange rates and price changes to help monitor market movements.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Forex pair symbol (e.g., EURUSD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Forex pair symbol (e.g., EURUSD)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}