Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --location --request GET 'https://stablecoin-api.sandbox.getmeru.com/v1/companies/balances' \ --header 'Content-Type: application/json' \ --header 'api-key: <api-key>'
const response = await fetch( "https://stablecoin-api.sandbox.getmeru.com/v1/companies/balances", { method: "GET", headers: { "Content-Type": "application/json", "api-key": "<api-key>", }, } ); const data = await response.json();
{ "success": true, "companyId": "123", "balances": { "bob": 15000.5, "ars": 250000.75, "brl": 5000.25, "usdc": 1000.0, "usdt": 500.0 }, "lastUpdated": "2024-01-15T10:30:00Z" }
Este endpoint obtiene el saldo actual de una empresa en todas las monedas soportadas
Mostrar Objeto balances
{ "success": false, "error": "Unauthorized. Please check your authentication credentials." }
{ "success": false, "error": "Company not found." }