GraphQL API
Describes how to authenticate and use the Spacelift GraphQL API.
Spacelift GraphQL API Usage Demo
The below guide walks through an example of generating your Spacelift token and using it to communicate with Spacelift.
Pre-requisites:
Insomnia downloaded and installed
Spacelift account access
Spacectl CLI tool downloaded and installed
API Usage
Spacelift provides a GraphQL API for you to control your Spacelift account programmatically and/or through an API Client if you choose to do so. A smaller subset of this API is also used by the Spacelift Terraform provider, as well as the Spacelift CLI (spacectl). The API can be accessed at the /graphql
endpoint of your account using POST
HTTP method.
In order to use the API, you will need a bearer token to authenticate your requests. There are currently three ways of obtaining this token:
SpaceCTL CLI > Token (easiest method)
SpaceCTL CLI > Token
One approach to generating this token is using the Spacelift spacectl CLI. We consider this the easiest method, as the heavy lifting to obtain the token is done for you.
Steps:
Follow the instructions on the
spacectl
GitHub repository to install the CLI on your machine.Authenticate to your Spacelift account using
spacectl profile login
Once authenticated, run
spacectl profile export-token
to receive the bearer token needed for future GraphQL queries/mutations.
Spacelift API Key > Token
Spacelift supports creating and managing machine users with programmatic access to the Spacelift GraphQL API. These "machine users" are called API Keys and can be created by Spacelift admins through the Settings panel.
In order to create a new API Key, please navigate to the API Keys section of the Account Settings panel in your account.

Click API Keys.

The API key creation form will allow you to specify an arbitrary key name, along with the Admin setting and the list of teams. If the key is given admin privileges, it has full access to the Spacelift API and won't be subject to access policies.
For non-administrative keys, you may want to add a virtual list of teams that the key should "belong to" so that existing access policies based on GitHub teams or SAML assertions can work with your API keys just as they do with regular users.
Without further ado, let's create a non-administrative API key with virtual membership in two teams: Developers and DevOps:

Once you click the Add Key button, the API Key will be generated and a file will be automatically downloaded. The file contains the API token in two forms - one to be used with our API, and the other one as a .terraformrc
snippet to access your private modules outside of Spacelift:

The config file looks something like this:
Please use the following API secret when communicating with Spacelift
programmatically:
SECRET_VALUE40ffc46887297384892384789239
Please add this snippet to your .terraformrc file if you want to use this API
key to access Spacelift-hosted Terraform modules outside of Spacelift:
credentials "spacelift.io" {
token = "TOKEN_VALUEQwZmZjNDY4ODdiMjI2ZWE4NDhjMWQwNWZiMWE5MGU4NWMwZTFlY2Q4NDAxMGI2ZjA2NzkwMmI1YmVlMWNmMGE"
}
Make sure you persist this data somewhere on your end - we don't store the token and it cannot be retrieved or recreated afterwards.
Using the API key
In order to use your newly generated API key in a program, you will first need to exchange it for a JWT token using a GraphQL mutation:
Steps:
Create a Spacelift API Key in your account, take note of the API Key ID (found next to the name of your API Key), and the API Key Secret (found within the file downloaded upon creation of the API Key).
Request Details:
POST to https://example.app.spacelift.io/graphql
Query:
mutation GetSpaceliftToken($keyId: ID!, $keySecret: String!) {
apiKeyUser(id: $keyId, secret: $keySecret) {
jwt
}
}
Query Variables Input:
{
"keyId": "PASTE_API_KEY_ID_HERE",
"keySecret": "PASTE_API_KEY_SECRET_HERE"
}
Assuming all went well, the result of the above query will return your JWT token, which you will now be able to use to authenticate for other queries.
Note that the key ID is the alphanumeric identifier shown in the GUI in fixed-width font next to the key name. The key secret can be found in the file that gets automatically generated when the API key is created.
The received JWT is valid for an hour, so if you're accessing Spacelift API from a long-running process you will need to make sure that the key is recreated every time it expires. In order to help with that, you can retrieve the validUntil
field (Unix timestamp of the expiration, in seconds) of the apiKeyUser
along with the raw JWT.
Personal GitHub Token > Token
Steps:
Using a GitHub Account that has access to your Spacelift account, create a GitHub Personal Access Token. Copy the value of this token to a secure location, as you'll need it in the next step.
Request Details:
POST to https://example.app.spacelift.io/graphql
Query:
mutation GetSpaceliftToken($token: String!) {
oauthUser(token: $token) {
jwt
}
}
GraphQL Variables Input:
{
"token": "PASTE-TOKEN-VALUE-HERE"
}
Assuming all went well, the result of the above query will return your JWT bearer token, which you will now be able to use to authenticate other queries. Once acquired, ensure you use this bearer token in your requests. If you want to access the API reliably in an automated way, we suggest using the Spacelift API Key > JWT Token approach as Spacelift tokens expire after 1 hour.
Viewing the GraphQL Schema
Our GraphQL schema is self-documenting. The best way to view the latest documentation is using a dedicated GraphQL client like Insomnia or GraphiQL. Note: As of the writing of these examples, the latest version of Postman does not currently support viewing GraphQL Schemas from a URL, but does support autocompletion.
Please replace the URL in the below examples with the one pointing to your Spacelift account.
Insomnia Example

GraphiQL Example
Input your GraphQL Endpoint for your Spacelift Account.

Use the Documentation Explorer within GraphiQL

Last updated
Was this helpful?