API Documentation
Integrate FluxPad's tools and data into your applications with our comprehensive REST API.
API Development Status
The FluxPad API is currently under development and not yet available.
We're building a comprehensive REST API that will provide developers with programmatic access to all FluxPad tools, Conflux ecosystem data, smart contract analysis, and token deployment capabilities.
Quick Start Guide
1
Get API Key
Sign up for a free FluxPad account and generate your API key from the dashboard.
2
Make Request
Include your API key in the Authorization header for all requests.
Authorization: Bearer YOUR_API_KEY3
Start Building
Use our endpoints to analyze contracts, fetch project data, and deploy tokens.
Planned API Endpoints
🚧 Preview Documentation - These endpoints are being developed and will be available in Q1 2026
POST
/api/v1/analyzeAnalyze smart contract
Example Request
curl -X POST https://api.fluxpad.org/v1/analyze \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"address": "0x14b2d3bc65e74dae1030eafd8ac30c533c976a9b"}'GET
/api/v1/projectsGet Conflux projects data
Example Request
curl -X GET https://api.fluxpad.org/v1/projects \
-H "Authorization: Bearer YOUR_API_KEY"POST
/api/v1/tokens/createDeploy new token contract
Example Request
curl -X POST https://api.fluxpad.org/v1/tokens/create \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "MyToken", "symbol": "MTK", "supply": "1000000"}'