# Get Journey stats

`GET` `https://journey.pushwoosh.com/api/journey/{id}/statistics/external`

Returns statistics for a Customer Journey by its ID. Replace `{id}` in the URL with the [Journey ID](/developer/api-reference/api-identifiers/#journey-id) from the journey canvas page URL:

<img src="/api-reference-customer-journey-statistics-1.webp" alt="Journey ID in the Journey canvas URL"/>

Send a GET request with no body.

#### Request headers

| Name | Required | Value | Description |
| --- | --- | --- | --- |
| Authorization | Yes | `Api <server_api_token>` | [Server API token](/developer/api-reference/api-access-token/#server-api-token). |

#### Request example

```shell
curl --location --request GET 'https://journey.pushwoosh.com/api/journey/<journey_id>/statistics/external' \
--header 'Authorization: Api <YOUR API TOKEN>'
```

#### Response example

<Tabs>
<TabItem label="200">

```json
{
  "payload": {
    "title": "Journey Title",
    "points": [{
      "pointTitle": "First Point Title",
      "campaignCode": "AAAAA-00000",
      "presetCode": "12345-67890",
      "pointStat": {
        "sent": 22648,
        "opened": 60,
        "conversion": 0.26492405510420347
      }
    }]
  }
}
```

</TabItem>
</Tabs>

#### In-app `pointStat` fields

The fields inside `pointStat` depend on the journey element's channel. In-app elements return the metrics below instead of the `sent`, `opened`, and `conversion` fields shown in the response example above.

| Field | Type | Description |
| --- | --- | --- |
| `shows` | number | Number of times in-app messages were displayed to users. Labeled **Impressions** in [Journey statistics](/product/statistics-and-analytics/journey-statistics/overall-journey-statistics/#metrics-by-channel). |
| `interactions` | number | Number of user interactions with the in-app message (for example, button clicks). Labeled **Interactions** in [Journey statistics](/product/statistics-and-analytics/journey-statistics/overall-journey-statistics/#metrics-by-channel). |
| `skipped` | number | Number of times users skipped or dismissed the in-app message without interacting. Labeled **In-App Skips** in [Journey statistics](/product/statistics-and-analytics/journey-statistics/overall-journey-statistics/#metrics-by-channel). |

#### In-app response example

```json
{
  "payload": {
    "title": "Journey Title",
    "points": [{
      "pointTitle": "In-App element title",
      "campaignCode": "AAAAA-00000",
      "presetCode": "12345-67890",
      "pointStat": {
        "shows": 3148,
        "interactions": 2759,
        "skipped": 36
      }
    }]
  }
}
```

## Related

<CardGrid>
  <LinkCard title="Remove users from journeys" href="/developer/api-reference/customer-journey-api/drop-users/" />
  <LinkCard title="Lifecycle" href="/developer/api-reference/customer-journey-api/lifecycle/" />
  <LinkCard title="Start by API" href="/developer/api-reference/customer-journey-api/start-by-api/" />
</CardGrid>