Quick Start

This guide will help you make your first API call to Linka in under 5 minutes.

Step 1: Get Your API Key

  1. Log in to your Linka Dashboard
  2. Navigate to Settings > API Keys
  3. Create a new API key
  4. Copy your API key (you'll only see it once!)

Step 2: Make Your First Request

Here's a simple example using cURL:

```bash
curl https://api.linka.xyz/v1/wallets \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
```

Step 3: Create a Wallet

```bash
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

Was this page helpful?

Help us improve our documentation