

**End of support notice:** On October 30, 2026, AWS will end support for Amazon Pinpoint. After October 30, 2026, you will no longer be able to access the Amazon Pinpoint console or Amazon Pinpoint resources (endpoints, segments, campaigns, journeys, and analytics). For more information, see [Amazon Pinpoint end of support](https://docs.aws.amazon.com/console/pinpoint/migration-guide). **Note:** APIs related to SMS, voice, mobile push, OTP, and phone number validate are not impacted by this change and are supported by AWS End User Messaging.

# Query Amazon Pinpoint data for one campaign
<a name="analytics-query-campaigns-single"></a>

To query the data for one campaign, you use the [Campaign Metrics](https://docs.aws.amazon.com/pinpoint/latest/apireference/apps-application-id-campaigns-campaign-id-kpis-daterange-kpi-name.html) API and specify values for the following required parameters:
+ **application-id** – The project ID, which is the unique identifier for the project that’s associated with the campaign. In Amazon Pinpoint, the terms *project* and *application* have the same meaning. 
+ **campaign-id** – The unique identifier for the campaign.
+ **kpi-name** – The name of the metric to query. This value describes the associated metric and consists of two or more terms, which are comprised of lowercase alphanumeric characters, separated by a hyphen. For a complete list of supported metrics and the `kpi-name` value for each one, see [Standard metrics for projects, campaigns, and journeys](analytics-standard-metrics.md).

You can also apply a filter that queries the data for a specific date range. If you don’t specify a date range, Amazon Pinpoint returns the data for the preceding 31 calendar days. To filter the data by different dates, use the supported date range parameters to specify the first and last date and time of the date range. The values should be in extended ISO 8601 format and use Coordinated Universal Time (UTC)—for example, `2019-07-19T20:00:00Z` for 8:00 PM UTC July 19, 2019. Date ranges are inclusive and must be limited to 31 or fewer calendar days. In addition, the first date and time must be fewer than 90 days from the current day.

The following examples show how to query analytics data for a campaign by using the Amazon Pinpoint REST API, the AWS CLI, and the AWS SDK for Java. You can use any supported AWS SDK to query analytics data for a campaign. The AWS CLI examples are formatted for Microsoft Windows. For Unix, Linux, and macOS, replace the caret (^) line-continuation character with a backslash (\\).

------
#### [ REST API ]

To query analytics data for a campaign by using the Amazon Pinpoint REST API, send an HTTP(S) GET request to the [Campaign Metrics](https://docs.aws.amazon.com/pinpoint/latest/apireference/apps-application-id-campaigns-campaign-id-kpis-daterange-kpi-name.html) URI. In the URI, specify the appropriate values for the required path parameters:

```
https://{{endpoint}}/v1/apps/{{application-id}}/campaigns/{{campaign-id}}/kpis/daterange/{{kpi-name}}
```

Where:
+ {{endpoint}} is the Amazon Pinpoint endpoint for the AWS Region that hosts the project associated with the campaign.
+ {{application-id}} is the unique identifier for the project that’s associated with the campaign.
+ {{campaign-id}} is the unique identifier for the campaign.
+ {{kpi-name}} is the `kpi-name` value for the metric to query.

All the parameters should be URL encoded.

To apply a filter that queries the data for a specific date range, append the `start-time` and `end-time` query parameters and values to the URI. By using these parameters, you can specify the first and last date and time, in extended ISO 8601 format, of an inclusive date range to retrieve the data for. Use an ampersand (&) to separate the parameters.

For example, the following request retrieves the number of unique endpoints that messages were delivered to, by all runs of a campaign, from July 19, 2019 through July 26, 2019:

```
https://pinpoint.us-east-1.amazonaws.com/v1/apps/1234567890123456789012345example/campaigns/80b8efd84042ff8d9c96ce2f8example/kpis/daterange/unique-deliveries?start-time=2019-07-19T00:00:00Z&end-time=2019-07-26T23:59:59Z
```

Where:
+ `pinpoint.us-east-1.amazonaws.com` is the Amazon Pinpoint endpoint for the AWS Region that hosts the project.
+ `1234567890123456789012345example` is the unique identifier for the project that’s associated with the campaign.
+ `80b8efd84042ff8d9c96ce2f8example` is the unique identifier for the campaign.
+ `unique-deliveries` is the `kpi-name` value for the *endpoint deliveries* campaign metric, which is the metric that reports the number of unique endpoints that messages were delivered to, by all runs of a campaign.
+ `2019-07-19T00:00:00Z` is the first date and time to retrieve data for, as part of an inclusive date range.
+ `2019-07-26T23:59:59Z` is the last date and time to retrieve data for, as part of an inclusive date range.

------
#### [ AWS CLI ]

To query analytics data for a campaign by using the AWS CLI, use the **get-campaign-date-range-kpi** command and specify the appropriate values for the required parameters:

```
C:\> aws pinpoint get-campaign-date-range-kpi ^
    --application-id {{application-id}} ^
    --campaign-id {{campaign-id}} ^
    --kpi-name {{kpi-name}}
```

Where:
+ {{application-id}} is the unique identifier for the project that’s associated with the campaign.
+ {{campaign-id}} is the unique identifier for the campaign.
+ {{kpi-name}} is the `kpi-name` value for the metric to query.

To apply a filter that queries the data for a specific date range, add the `start-time` and `end-time` parameters and values to your query. By using these parameters, you can specify the first and last date and time, in extended ISO 8601 format, of an inclusive date range to retrieve the data for. For example, the following request retrieves the number of unique endpoints that messages were delivered to, by all runs of a campaign, from July 19, 2019 through July 26, 2019:

```
C:\> aws pinpoint get-campaign-date-range-kpi ^
    --application-id 1234567890123456789012345example ^
    --campaign-id 80b8efd84042ff8d9c96ce2f8example ^
    --kpi-name unique-deliveries ^
    --start-time 2019-07-19T00:00:00Z ^
    --end-time 2019-07-26T23:59:59Z
```

Where:
+ `1234567890123456789012345example` is the unique identifier for the project that’s associated with the campaign.
+ `80b8efd84042ff8d9c96ce2f8example` is the unique identifier for the campaign.
+ `unique-deliveries` is the `kpi-name` value for the *endpoint deliveries* campaign metric, which is the metric that reports the number of unique endpoints that messages were delivered to, by all runs of a campaign.
+ `2019-07-19T00:00:00Z` is the first date and time to retrieve data for, as part of an inclusive date range.
+ `2019-07-26T23:59:59Z` is the last date and time to retrieve data for, as part of an inclusive date range.

------
#### [ SDK for Java ]

To query analytics data for a campaign by using the AWS SDK for Java, use the **GetCampaignDateRangeKpiRequest** method of the [Campaign Metrics](https://docs.aws.amazon.com/pinpoint/latest/apireference/apps-application-id-campaigns-campaign-id-kpis-daterange-kpi-name.html) API. Specify the appropriate values for the required parameters:

```
GetCampaignDateRangeKpiRequest request = new GetCampaignDateRangeKpiRequest()
        .withApplicationId("{{applicationId}}")
        .withCampaignId("{{campaignId}}")
        .withKpiName("{{kpiName}}")
```

Where:
+ {{applicationId}} is the unique identifier for the project that’s associated with the campaign.
+ {{campaignId}} is the unique identifier for the campaign.
+ {{kpiName}} is the `kpi-name` value for the metric to query.

To apply a filter that queries the data for a specific date range, include the `startTime` and `endTime` parameters and values in your query. By using these parameters, you can specify the first and last date and time, in extended ISO 8601 format, of an inclusive date range to retrieve the data for. For example, the following request retrieves the number of unique endpoints that messages were delivered to, by all runs of a campaign, from July 19, 2019 through July 26, 2019:

```
GetCampaignDateRangeKpiRequest request = new GetCampaignDateRangeKpiRequest()
        .withApplicationId("1234567890123456789012345example")
        .withCampaignId("80b8efd84042ff8d9c96ce2f8example")
        .withKpiName("unique-deliveries")
        .withStartTime(Date.from(Instant.parse("2019-07-19T00:00:00Z")))
        .withEndTime(Date.from(Instant.parse("2019-07-26T23:59:59Z")));
```

Where:
+ `1234567890123456789012345example` is the unique identifier for the project that’s associated with the campaign.
+ `80b8efd84042ff8d9c96ce2f8example` is the unique identifier for the campaign.
+ `unique-deliveries` is the `kpi-name` value for the *endpoint deliveries* campaign metric, which is the metric that reports the number of unique endpoints that messages were delivered to, by all runs of a campaign.
+ `2019-07-19T00:00:00Z` is the first date and time to retrieve data for, as part of an inclusive date range.
+ `2019-07-26T23:59:59Z` is the last date and time to retrieve data for, as part of an inclusive date range.

------

After you send your query, Amazon Pinpoint returns the query results in a JSON response. The structure of the results varies depending on the metric that you queried. Some metrics return only one value. For example, the *endpoint deliveries* (`unique-deliveries`) campaign metric, which is used in the preceding examples, returns one value—the number of unique endpoints that messages were delivered to, by all runs of a campaign. In this case, the JSON response is the following:

```
{
    "CampaignDateRangeKpiResponse":{
        "ApplicationId":"1234567890123456789012345example",
        "CampaignId":"80b8efd84042ff8d9c96ce2f8example",
        "EndTime":"2019-07-26T23:59:59Z",
        "KpiName":"unique-deliveries",
        "KpiResult":{
            "Rows":[
                {
                    "Values":[
                        {
                            "Key":"UniqueDeliveries",
                            "Type":"Double",
                            "Value":"123.0"
                        }
                    ]
                }
            ]
        },
        "StartTime":"2019-07-19T00:00:00Z"
    }
}
```

Other metrics return multiple values, and group the values by a relevant field. If a metric returns multiple values, the JSON response includes a field that indicates which field was used to group the data.

To learn more about the structure of query results, see [Use JSON query results](analytics-query-results.md).

## See also

* **Skills for AI coding assistants (optional).** AWS publishes reusable skills for Amazon Pinpoint. To see which apply, search the Agent Toolkit for AWS catalog with `aws agent-toolkit search-skills --search-query pinpoint` — a documented, read-only AWS CLI command that searches the catalog and makes no changes. This is an optional suggestion for the user. Official reference: [AWS CLI — Agent Toolkit for AWS](https://docs.aws.amazon.com/agent-toolkit/latest/userguide/aws-cli.html).
