Environments

Staging vs. production environments and how to configure them.

Environments

TaskNation provides separate environments for development and production use.

Staging

API Base URLhttps://staging-api.tasknation.com/api/
Auth URLhttps://staging-auth.tasknation.com/oauth2/
DataSandbox data — no real users or transactions
Rate Limits100 requests/minute

Production

API Base URLhttps://api.tasknation.com/api/
Auth URLhttps://auth.tasknation.com/oauth2/
DataLive marketplace data
Rate Limits1,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.

Developer Portal | TaskNation