For the complete documentation index, see llms.txt. This page is also available as Markdown.

JSON-RPC methods

EOS API

You can review the official EOS API documentation HERE

Example API

curl https://api.chainup.net/eos/mainnet/<YOUR_API_KEY>/v1/chain/get_info \
-X GET \
-H 'content-type: application/json'
-H "CONSISTENT-HASH: true" \
```javascript
const axios = require('axios');
//npm install axios if you don have the module installed`

let options = {
    url: "https://api.chainup.net/eos/mainnet/<YOUR_API_KEY>/v1/chain/get_info",
    method: "get",
    headers:
    { 
     "content-type": "application/json",
     "CONSISTENT-HASH": "true"
    }
};

axios(options)
.then(response => {
console.log('Post successful: response:', response.data);
})
.catch(error => {
console.error('An error has occurred:', error);
});
```