ETHERCHAIN

API Documentation

Complete API documentation and developer tools for EtherchainAI

Coming Soon

Our comprehensive API documentation is currently under development. We're working hard to bring you the best developer experience.

Expected Launch: Q4 2025

REST API

Complete REST API documentation with examples and interactive testing

GraphQL

Interactive GraphQL playground for advanced data querying

SDKs & Libraries

Client libraries and SDKs for popular programming languages

Search API Documentation

Getting Started

  • • API Authentication
  • • Rate Limits
  • • Error Handling
  • • Best Practices

API Endpoints

  • • Blockchain Data
  • • Transaction History
  • • Token Information
  • • Smart Contract Data

Sample API Endpoints

GET /api/v1/transactions
{
  "data": [
    {
      "hash": "0x...",
      "from": "0x...",
      "to": "0x...",
      "value": "1000000000000000000",
      "timestamp": 1640995200
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 1000
  }
}
GET /api/v1/blocks/{blockNumber}
{
  "data": {
    "number": 12345,
    "hash": "0x...",
    "timestamp": 1640995200,
    "transactions": 150,
    "gasUsed": "15000000",
    "gasLimit": "30000000"
  }
}

These are just previews. The complete API documentation will be available soon.