Massdriver GraphQL API
Massdriver provides a powerful GraphQL API that allows you to programmatically interact with your infrastructure and platform configurations. Whether you're automating deployments, managing resources, or integrating Massdriver with your existing tools, our GraphQL API provides a flexible and efficient way to accomplish your goals.
Getting Started
API Endpoint
The Massdriver GraphQL API is available at https://api.massdriver.cloud/api/
Interactive Explorer
You can explore and test API queries using our GraphQL Playground: Launch GraphQL Playground
Authentication
To authenticate your API requests, you'll need to:
- Generate an API key from your Massdriver account settings
- Include it in your requests using the
Authorization
header:
Authorization: Bearer your-api-key-here
Quick Example
Here's a simple query to get you started:
query {
projects {
name
slug
environments {
name
}
}
}
Next Steps
- Browse the schema documentation below to discover available queries and mutations
- Join our Slack community for API support