GraphQL API
Describes how to authenticate and use the Spacelift GraphQL API.
Last updated
Was this helpful?
Describes how to authenticate and use the Spacelift GraphQL API.
Last updated
Was this helpful?
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
CLI tool downloaded and installed
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:
Steps:
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 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.
Without further ado, let's create a non-administrative API key with virtual membership in two teams: Developers and DevOps:
The config file looks something like this:
Make sure you persist this data somewhere on your end - we don't store the token and it cannot be retrieved or recreated afterwards.
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:
Query Variables Input:
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.
Steps:
Request Details:
POST to https://example.app.spacelift.io/graphql
Query:
GraphQL Variables Input:
Please replace the URL in the below examples with the one pointing to your Spacelift account.
Input your GraphQL Endpoint for your Spacelift Account.
Use the Documentation Explorer within GraphiQL
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 , as well as the Spacelift CLI (). The API can be accessed at the /graphql
endpoint of your account using POST
HTTP method.
(easiest method)
One approach to generating this token is using the Spacelift CLI. We consider this the easiest method, as the heavy lifting to obtain the token is done for you.
Follow the instructions on the spacectl
to install the CLI on your machine.
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 .
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 or can work with your API keys just as they do with regular users.
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 outside of Spacelift:
Using your favorite API Client (e.g. or ). Make a GraphQL query to your account's GraphQL endpoint (example below).
This option is only available to those using GitHub as their identity provider. If you have enabled any other on your account, this method will not work. If this applies to you, you will need to use the method instead.
Using a GitHub Account that has access to your Spacelift account, . Copy the value of this token to a secure location, as you'll need it in the next step.
Using your favorite API Client (e.g. or ). Make a GraphQL POST request to your account's GraphQL endpoint (example below).
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 approach as Spacelift tokens expire after 1 hour.
Our GraphQL schema is self-documenting. The best way to view the latest documentation is using a dedicated GraphQL client like or . 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.