---
title: "GET /payments/intents"
method: GET
path: "/payments/intents"
---

# GET /payments/intents

`GET /payments/intents`

Retrieve a list of payment intents created within a specific time range, with support for filtering and pagination. This endpoint allows you to track and analyse all payment attempts for your account. It's useful for building dashboards, reconciling payments, or reviewing recent transactions programmatically.

## Query parameters

- `startTime` integer
- `endTime` integer
- `limit` integer
- `offset` string

## Response `200`

Successful response with payment intents and pagination cursor.

- GetIntentsResponse
  - `data` IntentSummary[], required
    - `amount` integer, required — The amount in lowest count unit. e.g.: For USD 1, amount is 100 representing 100 cents (The minimum amount should be greater than 1 USD)
    - `currency` string, required — Three-letter currency code
    - `createdAt` integer, required — Epoch timestamp in milliseconds of when the intent was created
    - `status` string, required — Current status of the intent. Refer [payment statuses](/products/one-time-payments/payment-statuses)
    - `succeededAt` integer — Epoch timestamp in milliseconds of when the payment was successfully completed
    - `receiptId` string — Your identifier for the order
    - `xIntentId` string, required — Unique identifier of the intent
  - `metadata` object, required
    - `offset` string — Pagination cursor for fetching the next page of results. Use this exact string as the `offset` parameter in your next API request. When this field is missing or null, you've reached the end of the results. For detailed pagination implementation guide, see [Pagination Guide](/developer-resources/pagination).

## Other responses

- `400` — Invalid request

---

[API](https://skmtc.net/xpaycheckout/apis/xpay-api-store.md) · [All operations](https://skmtc.net/xpaycheckout/apis/xpay-api-store/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/xpaycheckout/xpay-api-store/versions/6329a7c694bc/schema)
