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.
Understanding API error responses
{ "message": "Error description", "errors": [ { "message": "Account has been disabled. Try again in 15 minutes" } ] }
try { const response = await fetch('https://api.obiex.finance/addresses/me/broker', { headers: { 'Authorization': 'YOUR_API_KEY' } }); if (!response.ok) { const error = await response.json(); console.error('API Error:', error.message); return; } const data = await response.json(); } catch (err) { console.error('Network error:', err); }
Was this page helpful?