⚓️ Portcall

Creating API keys

Generate, store, and use API keys from the dashboard developer page.

Generate key

  1. Open dashboard /developer.
  2. Click Create API Secret.
  3. Copy the key immediately and store it in your secret manager.
API key value shown after creation

Use key in requests

curl -sS "$PORTCALL_API_BASE/v1/plans" \
  -H "x-api-key: $PORTCALL_API_KEY"
  • Never expose secret keys in frontend code.
  • Keep separate keys per environment.
  • Rotate keys regularly from the developer page.