Beginner5 min read
Edit on GitHubQuickstart
Get up and running with Nacho API in under 5 minutes
Get your first Cardano API response in under 5 minutes.
Step 1: Create an Account
Sign up at app.nacho.builders/login using:
- Google Sign-In (recommended)
- Email Magic Link
Your FREE API key is created automatically when you sign up.
Step 2: Find Your API Key
- Go to API Keys in your dashboard
- Copy your FREE tier key (starts with
napi_)
Your FREE key includes 100,000 requests per day - enough to build and test most applications.
Step 3: Choose Your Network
Nacho API supports two networks with the same API key:
| Network | Base URL | Use For |
|---|---|---|
| Mainnet | api.nacho.builders/v1/ogmios | Production apps |
| Preprod | api.nacho.builders/v1/preprod/ogmios | Testing & development |
Start with Preprod for development - you can get free test ADA from the Cardano Faucet.
Step 4: Make Your First Request
Query the current chain tip to verify everything works (examples use Mainnet - add /preprod for testnet):
curl -X POST https://api.nacho.builders/v1/ogmios \
-H "Content-Type: application/json" \
-H "apikey: YOUR_API_KEY" \
-d '{
"jsonrpc": "2.0",
"method": "queryNetwork/tip"
}'Expected Response
{
"jsonrpc": "2.0",
"method": "queryNetwork/tip",
"result": {
"slot": 145832847,
"id": "abc123def456..."
}
}Try It Live
Loading...
Next Steps
Now that you've made your first request:
- Learn about Authentication in detail
- Explore the API Reference
- Try Querying UTxOs
Was this page helpful?