Authentication
All API requests require authentication via an API key.
API Keys
Generate an API key from Settings > API Keys in the dashboard. Keys are prefixed with nskey_live_ for production and nskey_test_ for test mode.
Using your key
Pass your API key in the Authorization header:
Authorization: Bearer nskey_live_your_key_here
Example
curl https://api.nitrosend.com/v1/my/account \
-H "Authorization: Bearer nskey_live_..."
Keep your API keys secret. Never expose them in client-side code or commit them to version control.