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

# Get a journey

> Retrieves a single journey including its full graph. The graph include the `trigger`,
`nodes` and `edges`. The graph is composed of nodes and edges. Messaging nodes expose
message and content metadata but do not include content bodies or audience details. 
Archived journeys return 200 with `status: "archived"`.




## OpenAPI

````yaml /api-reference/campaigns-v2/campaigns-v2.yaml get /journeys/{id}
openapi: 3.0.3
info:
  title: Vero Open API v2
  version: 2.0.0
  description: >
    OpenAPI description for the API key-authenticated `api/v2` campaign and

    broadcast endpoints.


    Authentication uses the `Authorization` header. Both of these forms are
    accepted:


    - `Authorization: sk_valid_123`

    - `Authorization: Bearer sk_valid_123`

    - `revision: 2026-03-01`


    Campaign read endpoints require the `campaign:read` permission, and campaign

    write endpoints require the `campaign:write` permission.


    Broadcast read endpoints require the `broadcast:read` permission. A
    broadcast

    is a one-off or recurring message sent to an audience.
servers:
  - url: https://api.getvero.com/api/v2
security:
  - ApiKeyAuth: []
tags:
  - name: Broadcasts
  - name: Broadcast Messages
  - name: Broadcast Message Contents
  - name: Journeys
  - name: Journey Messages
  - name: Journey Message Contents
  - name: Campaigns
  - name: Campaign Messages
  - name: Campaign Message Contents
paths:
  /journeys/{id}:
    get:
      tags:
        - Journeys
      summary: Get a journey
      description: >
        Retrieves a single journey including its full graph. The graph include
        the `trigger`,

        `nodes` and `edges`. The graph is composed of nodes and edges. Messaging
        nodes expose

        message and content metadata but do not include content bodies or
        audience details. 

        Archived journeys return 200 with `status: "archived"`.
      operationId: getJourney
      parameters:
        - name: id
          in: path
          required: true
          description: Journey ID.
          schema:
            type: integer
        - name: revision
          in: header
          required: false
          description: >-
            Optional dated API revision for the request. Must use `YYYY-MM-DD`
            format.
          schema:
            type: string
            pattern: ^\d{4}-\d{2}-\d{2}$
            example: '2026-03-01'
      responses:
        '200':
          description: Single journey returned.
          content:
            application/json:
              examples:
                default:
                  value:
                    id: 42
                    name: Welcome series
                    description: null
                    status: active
                    trigger:
                      type: event
                      event_name: user_signed_up
                    nodes:
                      - id: 1
                        type: enter
                      - id: 2
                        type: delay
                        delay:
                          duration: 3
                          duration_unit: days
                          delivery_option: 1
                          delay_property: null
                          property_type: null
                          preferred_delivery_time: null
                      - id: 3
                        type: email
                        title: Welcome email
                        message:
                          id: 100
                          from: hello@example.com
                          reply_to: reply@example.com
                          contents:
                            - id: 200
                              locale: null
                              is_default: true
                              subject: Welcome aboard
                              preheader_text: Glad you're here
                      - id: 4
                        type: branch
                        conditions:
                          combinator: and
                          groups: []
                      - id: 5
                        type: exit
                    edges:
                      - from: 1
                        to: 2
                      - from: 2
                        to: 4
                      - from: 4
                        to: 3
                        branch_index: 0
                      - from: 4
                        to: 5
                        branch_index: 1
                      - from: 3
                        to: 5
                    created_at: '2026-03-01T10:00:00Z'
                    updated_at: '2026-03-01T10:00:00Z'
              schema:
                type: object
                required:
                  - id
                  - name
                  - description
                  - status
                  - trigger
                  - nodes
                  - edges
                  - created_at
                  - updated_at
                properties:
                  id:
                    type: integer
                  name:
                    type: string
                  description:
                    type: string
                    nullable: true
                  status:
                    type: string
                    enum:
                      - draft
                      - active
                      - paused
                      - archived
                      - cancelled
                  trigger:
                    type: object
                    nullable: true
                    required:
                      - type
                      - event_name
                    properties:
                      type:
                        type: string
                        enum:
                          - event
                      event_name:
                        type: string
                  nodes:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - type
                      properties:
                        id:
                          type: integer
                        type:
                          type: string
                          enum:
                            - enter
                            - exit
                            - email
                            - push
                            - sms
                            - delay
                            - branch
                            - ab_test
                            - ab_test_end
                        title:
                          type: string
                          nullable: true
                        delay:
                          type: object
                          nullable: true
                        conditions:
                          type: object
                          nullable: true
                        message:
                          type: object
                          nullable: true
                          required:
                            - id
                            - from
                            - reply_to
                            - contents
                          properties:
                            id:
                              type: integer
                            from:
                              type: string
                              nullable: true
                            reply_to:
                              type: string
                              nullable: true
                            contents:
                              type: array
                              items:
                                type: object
                                required:
                                  - id
                                  - locale
                                  - is_default
                                  - subject
                                  - preheader_text
                                properties:
                                  id:
                                    type: integer
                                  locale:
                                    type: string
                                    nullable: true
                                  is_default:
                                    type: boolean
                                  subject:
                                    type: string
                                    nullable: true
                                  preheader_text:
                                    type: string
                                    nullable: true
                  edges:
                    type: array
                    items:
                      type: object
                      required:
                        - from
                        - to
                      properties:
                        from:
                          type: integer
                        to:
                          type: integer
                        branch_index:
                          type: integer
                  created_at:
                    type: string
                  updated_at:
                    type: string
        '404':
          description: Journey belongs to another project.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    NotFoundError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          enum:
            - not_found
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Accepts either a raw API key or `Bearer <key>`.

````