Quick Start
This guide will help you make your first API call to Linka in under 5 minutes.
Step 1: Get Your API Key
- Log in to your Linka Dashboard
- Navigate to Settings > API Keys
- Create a new API key
- Copy your API key (you'll only see it once!)
Step 2: Make Your First Request
Here's a simple example using cURL:
curl https://api.linka.xyz/v1/wallets \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Step 3: Create a Wallet
curl -X POST https://api.linka.xyz/v1/wallets \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"currency": "USDC",
"network": "polygon"
}'
Next Steps
- Learn about Authentication
- Explore our API Reference
- Check out our Integration Guides