> ## Documentation Index
> Fetch the complete documentation index at: https://developers.nutshell.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a list of stages

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "title": "Nutshell API",
    "description": "The most powerful API in the world",
    "version": "2.0.0"
  },
  "servers": [
    {
      "url": "app.nutshell.com/rest"
    }
  ],
  "paths": {
    "/stages": {
      "get": {
        "tags": [
          "Stagesets (Pipelines)"
        ],
        "summary": "Get a list of stages",
        "operationId": "14af5dd687ab31f65e5af1a2b1fa5527",
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Stage"
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "basicAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "Stage": {
        "properties": {
          "id": {
            "description": "The API ID of this entity, formatted {integer}-{entityType}",
            "type": "string",
            "example": "3-contacts"
          },
          "name": {
            "description": "The name of the stage",
            "type": "string",
            "example": "Prospecting"
          },
          "description": {
            "description": "The purpose of the stage",
            "type": "string",
            "example": "Identify and qualify potential customers"
          },
          "position": {
            "description": "The order in which this stage appears in the pipeline",
            "type": "integer",
            "example": 1
          },
          "activeAvatarUrl": {
            "type": "string"
          },
          "completeAvatarUrl": {
            "type": "string"
          },
          "incompleteAvatarUrl": {
            "type": "string"
          },
          "overdueAvatarUrl": {
            "type": "string"
          },
          "numSteps": {
            "description": "The number of steps in this stage to move on to the next stage",
            "type": "number",
            "example": 3
          },
          "canAdvanceStage": {
            "description": "Can we advance the lead to this stage?",
            "type": "boolean",
            "example": true
          },
          "links": {
            "description": "A list of related entity IDs",
            "type": "array",
            "items": {
              "properties": {
                "stageset": {
                  "type": "string",
                  "example": "1-stagesets"
                }
              },
              "type": "object"
            }
          }
        },
        "type": "object"
      }
    },
    "securitySchemes": {
      "basicAuth": {
        "type": "http",
        "scheme": "basic"
      }
    }
  },
  "tags": [
    {
      "name": "Stagesets (Pipelines)",
      "description": "Stagesets (Pipelines)"
    }
  ]
}
```