Getting Started with Mefree.NET REST API
Getting Started with Mefree.NET REST API
This guide will help you quickly get started with connecting to and using Mefree.NET's REST API for TRON energy services.
1. Preparation
1.1 Register and Obtain API Keys
Log in to Mefree.NET's Telegram bot (@SuperXCoinBot).
Navigate to the Personal Center section and click on API Purchase.
Save the following:
API Key (MF-ACCESS-KEY)
API Secret (MF-ACCESS-SECRET)
1.2 Tools and Environment
Testing Tools: Use tools like Postman, Curl, or command-line utilities.
Development Environment: Python (recommended with the
requests
library), or any programming language that supports HTTP requests.
1.3 Reference Documentation
Visit the Mefree.NET Official API Documentation for detailed descriptions of available endpoints and parameters.
2. API Basics
2.1 Base URL
Production Environment:
https://api.mefree.net
2.2 API Headers
Every request must include the following HTTP headers:
Content-Type
:application/json
MF-ACCESS-KEY
: Your API keyMF-ACCESS-SIGN
: Request signature (see signature rules below)MF-ACCESS-TIMESTAMP
: Current timestamp
2.3 Timestamp Format
The MF-ACCESS-TIMESTAMP
must be in ISO 8601 format using UTC, e.g., 2023-01-01T12:00:00.000Z
.
2.4 Signature Rules
The signature ensures secure communication. Follow these steps to generate the signature:
Concatenate the following string to be signed:
timestamp
: Value ofMF-ACCESS-TIMESTAMP
.method
: HTTP method (e.g.,GET
,POST
).
Use the HMAC-SHA256 algorithm with your API Secret Key to hash the string.
Encode the hashed result using Base64 to obtain the signature.
3. Quick Request Examples
3.1 Set Up Your Development Environment
Install the required Python libraries:
3.2 Example: Query Account Balance
Request Details
URL:
GET /api/config
Function: Fetch account information.
Code Implementation
3.3 Example: Place an Order for Energy
Request Details
URL:
POST /api/order
Function: Purchase energy.
Code Implementation
4. Common Issues and Solutions
HTTP Status Code 401 (Unauthorized):
Verify the
MF-ACCESS-KEY
andMF-ACCESS-SIGN
values.Ensure your API key has the required permissions enabled.
HTTP Status Code 400 (Bad Request):
Check if your request parameters (e.g., quantity, receiver) are correct.
Signature Errors:
Make sure the timestamp uses UTC format and the signature follows the required rules.
5. Next Steps
Explore the Mefree.NET API Documentation for more advanced features (e.g., retrieving order details, available energy).
Integrate the API into your system to automate energy purchases and optimize resource usage.
Build custom tools or platforms to manage energy trading more efficiently.
If you have any question, please contact us @mefreenet.
By following this guide, you’ve completed the basics of connecting to the Mefree API. Best of luck with your TRON energy operations!
Last updated