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

# Get Partner Stages

> Retrieve all partnership stages for managing partner relationship lifecycle

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.journeybee.io/api/v1/stages/partner-stages" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json"
  ```
</CodeGroup>

## Response Schema

<ResponseField name="stages" type="array">
  Array of partner stage objects

  <Expandable title="Partner Stage Object">
    <ResponseField name="id" type="number">Stage ID</ResponseField>
    <ResponseField name="uuid" type="string">Stage UUID</ResponseField>
    <ResponseField name="label" type="string">Stage name</ResponseField>
    <ResponseField name="series" type="number">Stage order/sequence</ResponseField>
    <ResponseField name="phase" type="string">Stage phase category</ResponseField>
    <ResponseField name="partner_type" type="string">Partner type: `referral`, `reseller`</ResponseField>
    <ResponseField name="company_id" type="number">Company ID</ResponseField>
  </Expandable>
</ResponseField>

## Example Response

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "id": 1,
      "uuid": "stage-uuid-123",
      "label": "Prospecting",
      "series": 1,
      "phase": "discovery",
      "partner_type": "referral",
      "company_id": 123
    },
    {
      "id": 2,
      "label": "Active Partnership",
      "series": 2,
      "phase": "active",
      "partner_type": "referral"
    }
  ]
  ```
</ResponseExample>

## Notes

* Requires API key with `read_access` permission
* Partner stages track the partnership relationship lifecycle
* Different stages for referral vs reseller partner types
