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

# Get Pathway Versions

> Retrieves all versions of a specific pathway, including version number, creation date, name, and latest status.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="pathway_id" type="string" required>
  The ID of the pathway for which to retrieve versions.
</ParamField>

### Response

<ResponseField name="id" type="string">
  The unique identifier of the pathway version.
</ResponseField>

<ResponseField name="version_number" type="integer">
  The version number of this pathway version.
</ResponseField>

<ResponseField name="created_at" type="string">
  The timestamp when this version was created.
</ResponseField>

<ResponseField name="name" type="string">
  The name of this pathway version.
</ResponseField>

<ResponseField name="is_latest" type="boolean">
  Indicates whether this is the latest version of the pathway.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "id": "v1_abc123",
      "version_number": 1,
      "created_at": "2024-03-05T12:00:00Z",
      "name": "Initial Version",
      "is_latest": false
    },
    {
      "id": "v2_def456",
      "version_number": 2,
      "created_at": "2024-03-06T14:30:00Z",
      "name": "Updated Flow",
      "is_latest": true
    }
  ]
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
