Skip to main content
Welcome to the Altostrat Developer Platform. Our API is built on REST principles, with predictable, resource-oriented URLs and standard HTTP response codes. All API requests and responses, including errors, are returned in JSON format. This reference is your complete guide to integrating with Altostrat’s powerful automation, security, and management capabilities.

Getting Started: Your First API Call

Authentication is handled via Bearer Tokens. You can create and manage your API tokens from the Settings > API Tokens section of your Altostrat workspace dashboard. All API requests must be made over HTTPS and include your token in the Authorization header. Here’s a quick example to get you started by listing the workspaces your token has access to:
curl -X GET 'https://api.altostrat.io/v1/workspaces' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'Content-Type: application/json'

Exploring the API: Core Concepts

Our API is organized into logical groups of resources based on their function within the Altostrat SDX platform. This structure is designed to help you quickly find the endpoints you need to accomplish your goals. We encourage you to explore these sections to understand the full capabilities of the platform. Happy building!