🔹 API Overview
The ελσσοδ API provides programmatic access to blockchain data, account operations, and decentralized network services. Use our REST-style endpoints to validate transactions, query node status, and implement custom smart contract interactions.
🔒 Authentication
OAuth 2.0 bearer tokens required
⚙️ Rate Limits
5000 requests/minute per client
🔐 Authentication
Bearer Token
curl -H "Authorization: Bearer <token>" https://api.ελσσοδ.network/v1/transactions
Token Generation
- POST /auth/generate
- Scope-based access
- 12-hour token expiration
🚦 API Endpoints
GET
/v1/addresses/:address
Query account details
POST
/v1/transactions
Send blockchain transaction
GET
/v1/nodes/status
Network node monitoring
🧪 Usage Examples
Query Account Balance
GET /v1/addresses/0x123 Authorization: Bearer <token>
Submit Transaction
POST /v1/transactions { "from": "0x123", "to": "0x456", "amount": "50" }