# Filtering for Apple Pay or Google Pay charges using the Stripe Dashboard

Filtering specifically for charges made using Apple Pay or Google Pay is only available when using Stripe Sigma or Dashboard exports.
### Using Stripe Sigma
To filter for charges created using Apple Pay or Google Pay, use the **Charges** table and filter by the `card_tokenization_method` column. That column contains `apple_pay` for Apple Pay payments and `android_pay` or `google_pay` for Google Pay payments. A SQL query to do find Apple Pay payments looks like:
``
```
SELECT id
FROM charges
WHERE card_tokenization_method = 'apple_pay'
ORDER BY created
```
### Using Dashboard exports
To locate Apple Pay or Google Pay charges, export your payments from the [Dashboard](https://dashboard.stripe.com/payments) with the **Card Tokenization Method** column enabled. In the exported file, that column will contain `apple_pay` for Apple Pay payments and `android_pay` or `google_pay` for Google Pay payments.
