Base URLs

Regional API endpoints for optimal performance and data residency compliance.

Choose the appropriate base URL based on your organization's geographic location and regulatory requirements. All API requests must be directed to the correct regional endpoint to ensure low latency and adherence to data sovereignty policies.

Available Endpoints

  • US Production: https://api-us.streamline.formstack.com
  • Canada Production: https://api-ca.streamline.formstack.com

Choosing Your Region

United States

Use the US endpoint if your organization is based in the United States or if you don't have specific data residency requirements.

https://api-us.streamline.formstack.com

Canada

Use the Canadian endpoint if your organization requires data to remain within Canadian borders for compliance or regulatory purposes.

https://api-ca.streamline.formstack.com

Implementation

Replace the base URL in all your API requests with your selected regional endpoint:

# US Example
curl -X GET "https://api-us.streamline.formstack.com/v1/current-user" \
  -H "Authorization: Bearer your_token"

# Canada Example  
curl -X GET "https://api-ca.streamline.formstack.com/v1/current-user" \
  -H "Authorization: Bearer your_token"

Important Notes

  • Consistency: Always use the same regional endpoint for all requests within your application
  • Performance: Choose the endpoint geographically closest to your users for optimal performance
  • Compliance: Ensure your chosen endpoint meets your organization's data residency and regulatory requirements
  • Migration: Contact support if you need to migrate between regions