Read currencies

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://rest-api.developer.24sevenoffice.com/doc/v1/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"v1 MCP server": {
  "url": "https://rest-api.developer.24sevenoffice.com/doc/v1/mcp"
}
Close
GET /currencies

Read a list of available currencies within Finago Office accounting module.

Headers

  • Authorization string Required

    Authorization header

Responses

  • 200 application/json
    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
    Hide response attributes Show response attributes object
    • code string

      The currency code used in transactions within the Finago Office.

    • rate number

      The exchange rate of the currency.

GET /currencies
curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/currencies' \
 --header "Authorization: string"
Response examples (200)
[
  {
    "code": "USD",
    "rate": 1.25
  },
  {
    "code": "EUR",
    "rate": 1.12
  },
  {
    "code": "GBP",
    "rate": 1.38
  }
]