{"name":"CryptoMajor API","version":"1.0.0","description":"Multi-provider crypto wallet and swap API service","base_url":"http:\/\/localhost\/api","authentication":{"type":"Bearer Token","header":"Authorization: Bearer {token}","description":"All API endpoints require a valid Bearer token for authentication"},"rate_limits":{"default":"100 requests per minute","wallet_creation":"10 requests per hour","balance_check":"60 requests per minute","transactions":"20 requests per 10 minutes","swap_quote":"30 requests per minute","swap_execute":"10 requests per 30 minutes"},"endpoints":{"wallets":{"POST \/wallets":{"description":"Create a new wallet","parameters":{"network":"string (required) - Network name","create_backup":"boolean (optional) - Create backup wallet"}},"GET \/wallets\/{address}\/balance":{"description":"Get wallet balance","parameters":{"address":"string (required) - Wallet address"}},"POST \/wallets\/send":{"description":"Send transaction","parameters":{"from_address":"string (required)","to_address":"string (required)","amount":"numeric (required)","network":"string (required)","symbol":"string (optional)","gas_price":"numeric (optional)","gas_limit":"integer (optional)"}},"GET \/wallets\/{address}\/transactions":{"description":"Get wallet transaction history","parameters":{"address":"string (required) - Wallet address"}}},"swap":{"POST \/swap\/quote":{"description":"Get swap quote","parameters":{"from_token":"string (required)","to_token":"string (required)","amount":"numeric (required)","from_network":"string (required)","to_network":"string (required)"}},"POST \/swap\/execute":{"description":"Execute swap","parameters":{"from_address":"string (required)","to_address":"string (required)","from_token":"string (required)","to_token":"string (required)","amount":"numeric (required)","from_network":"string (required)","to_network":"string (required)","slippage":"numeric (optional)"}},"GET \/swap\/{swapId}\/status":{"description":"Get swap status","parameters":{"swapId":"string (required) - Swap ID"}}},"system":{"GET \/networks":{"description":"Get supported networks"},"GET \/health":{"description":"API health check"}}},"supported_networks":["bitcoin","ethereum","bsc","polygon","arbitrum","optimism","base","litecoin","dogecoin","tron"],"response_format":{"success":{"success":true,"data":"{}","message":"string"},"error":{"success":false,"error":"string","message":"string"}}}