Get Started
Getting started is easy
KEPLER uses API Keys to authenticate requests. Every API request must include your API Key as an HTTP header (Api-Key
) to verify your identity, subscription and permissions.
Visit: https://kepler.projectx.mx
Log-in using your preferred wallet
Choose the right plan for your needs
Create an API Key, and give it a name
Plug Into Your App
Visit the Services section in your Dashboard to see your live endpoints
Set up webhooks & advanced configs (Coming soon)
Here's a simple example:
curl --request GET \
--url "https://kepler-api.projectx.mx/mainnet/api/transactions?size=3" \
--header "Api-Key: deadbeefbadf00d788ef583ecea05f4f"
This command returns the last 3 transactions from the main-net API.
For specific MultiversX structures (e.g. transactions, addresses, tokens), refer to the official docs: š MultiversX Docs
Never expose your API key in client-side code, public repositories, or browser-accessible areas
Store your API key securely using environment variables or secret management services
Last updated