[BETA] Retrieve the live-balance

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://openapi-v2.exoscale.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Exoscale APIv2 MCP server": {
  "url": "https://openapi-v2.exoscale.com/mcp"
}
Close
GET /live-balance

[BETA] Returns the live-balance of the current organization.

Responses

  • 200 application/json

    200

    Hide response attributes Show response attributes object
    • balance number

      Organization live balance

    • currency string

      Organization currency

  • 429 application/json

    429

    Hide response attributes Show response attributes object
    • error string

      The error message

    • retry_after number

      The time in seconds to wait before the next request

GET /live-balance
curl \
 --request GET 'https://api-ch-gva-2.exoscale.com/v2/live-balance'
Response examples (200)
{
  "balance": 42.0,
  "currency": "string"
}
Response examples (429)
{
  "error": "string",
  "retry_after": 42.0
}