Skip to main content
GET
/
journeys
/
{id}
Get a journey
curl --request GET \
  --url https://api.getvero.com/api/v2/journeys/{id} \
  --header 'Authorization: <api-key>'
import requests

url = "https://api.getvero.com/api/v2/journeys/{id}"

headers = {"Authorization": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};

fetch('https://api.getvero.com/api/v2/journeys/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getvero.com/api/v2/journeys/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.getvero.com/api/v2/journeys/{id}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.getvero.com/api/v2/journeys/{id}")
.header("Authorization", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.getvero.com/api/v2/journeys/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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"
}
{
"error": "not_found"
}

Authorizations

Authorization
string
header
required

Accepts either a raw API key or Bearer <key>.

Headers

revision
string

Optional dated API revision for the request. Must use YYYY-MM-DD format.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-03-01"

Path Parameters

id
integer
required

Journey ID.

Response

Single journey returned.

id
integer
required
name
string
required
description
string | null
required
status
enum<string>
required
Available options:
draft,
active,
paused,
archived,
cancelled
trigger
object | null
required
nodes
object[]
required
edges
object[]
required
created_at
string
required
updated_at
string
required