> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wava.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Creating Links

> Create payment links on behalf of onboarded stores.

# Creating Payment Links as a Partner

Partners can create payment links (fixed or dynamic) on behalf of their stores using the same `POST /v1/links` endpoint with all three authentication headers.

## Example

```bash theme={null}
curl -X POST "https://api.wava.co/v1/links" \
  -H "merchant-key: STORE_MERCHANT_KEY" \
  -H "X-API-Key: YOUR_PARTNER_API_KEY" \
  -H "X-API-Secret: YOUR_PARTNER_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 80000,
    "description": "Monthly service fee",
    "currency": "COP",
    "order_key": "partner-invoice-001"
  }'
```

The response and behavior are identical to standard payment links. See [Payment Links](/links/overview) for details on fixed vs. dynamic links and redirect configuration.
