GET
/
v2
/
journey
/
{journeyId}
Get the full timeline for a payment journey
curl --request GET \
  --url https://api.request.network/v2/journey/{journeyId}
{
  "id": "01JOURNEYULID1234567890ABCDEF",
  "requestId": "01HXYZABCDEF1234567890QWERTYUIOP",
  "createdAt": "2024-06-10T12:00:00Z",
  "events": [
    {
      "id": "01EVENTULID1234567890ABCDEF",
      "stepIndex": 1,
      "status": "PENDING",
      "amount": "500.00",
      "currency": "USDT",
      "processedAt": "2024-06-10T13:00:00Z"
    },
    {
      "id": "01EVENTULID1234567890ABCDEG",
      "stepIndex": 2,
      "status": "COMPLETED",
      "amount": "1000.00",
      "currency": "USDT",
      "txReference": "0xabc123def456...",
      "processedAt": "2024-06-10T14:23:00Z",
      "rawPayload": {
        "exchange": "Binance",
        "network": "Ethereum"
      }
    }
  ]
}

Path Parameters

journeyId
string
required

Response

Journey and its events retrieved successfully.

The response is of type any.