Sevit
Introduction
Sevit lets you use web3 functionality through a REST API. Access the Ethereum network without having your own web3 provider - Sevit handles it all on the back-end. Get things like the owner of an NFT, get an address's balance, resolve an ENS name, call smart contract functions, and more.
Authentication
Choose a plan from RapidApi and pass your api key through the X-RapidAPI-Key header. You also have to include the X-RapidAPI-Host header with the value of sevit.p.rapidapi.com
Basic Requests
GET
Get Address Balance
ExampleReturns the balance of an address in wei.
GET
Resolve ENS Name
ExampleReturns the address an Ethereum Name Service name resolves to.
GET
Get Gas Price
ExampleReturns the current gas price in wei.
GET
Get Transaction
ExampleReturns the details of a transaction.
Smart Contracts
POST
Call Smart Contract Function
ExampleCalls a smart contract function (Read Only). The Contract ABI must be passed into the request body as Application/JSON. (You can get the contract ABI from https://api.etherscan.io/api?module=contract&action=getabi&address= {contractAddress}. Pass function parameters (if any) into query parameters.