Environments
Staging vs. production environments and how to configure them.
Environments
TaskNation provides separate environments for development and production use.
Staging
| API Base URL | https://staging-api.tasknation.com/api/ |
| Auth URL | https://staging-auth.tasknation.com/oauth2/ |
| Data | Sandbox data — no real users or transactions |
| Rate Limits | 100 requests/minute |
Production
| API Base URL | https://api.tasknation.com/api/ |
| Auth URL | https://auth.tasknation.com/oauth2/ |
| Data | Live marketplace data |
| Rate Limits | 1,000 requests/minute (upgradable) |
Warning
Never use production credentials in development. All staging and production credentials are distinct and non-interchangeable.
Rate Limiting
When you exceed your rate limit, the API returns 429 Too Many Requests with a Retry-After header indicating when you can retry. Implement exponential backoff in your integration.