Skip to main content
GET
/
pipeline
/
applications
/
stages
Get all application pipeline stages
curl --request GET \
  --url https://api.gospott.com/pipeline/applications/stages \
  --header 'x-api-key: <api-key>'
{
  "stages": [
    {
      "type": "speculative",
      "templateType": "DEFAULT_SPECULATIVE",
      "templateId": "<string>",
      "countForAnalytics": true,
      "labels": [
        {
          "id": "<string>",
          "name": "<string>",
          "colorHex": "<string>",
          "order": 123
        }
      ],
      "id": "<string>",
      "order": 123,
      "name": "<string>",
      "colorHex": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Query Parameters

templateId
string

Optional template ID to filter stages by a specific pipeline template

Response

Successfully retrieved application stages. Returns ordered list of pipeline stages with their statuses.

stages
object[]
required