> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.synchpay.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Checking Payment Request Status

> Retrieve the current status and details for a SynchPay payment request.

Use `GET /Payment/{paymentRequestId}/Status` to retrieve the current status of a payment request created by your integration.

## Endpoint

* **URL**: `https://api.synchpay.com/Payment/{paymentRequestId}/Status`
* **Method**: `GET`
* **Authorization**: `Bearer <AccessToken>`

<Tip>
  The access token is obtained from [/auth/token](https://apidocs.synchpay.dev/api-reference/authentication/authenticate) using your `ClientId` and `ClientSecret`.
</Tip>

## Path Parameters

| Parameter          | Type   | Description                       | Required |
| ------------------ | ------ | --------------------------------- | -------- |
| `paymentRequestId` | string | Unique ID of the payment request. | Yes      |

## Example Request

```http theme={null}
GET /Payment/ce0e3549-a83e-4cf6-bb5c-1d50a21d8af7/Status HTTP/1.1
Host: api.synchpay.com
Authorization: Bearer eyJhbGciOi...
```

## Response

| Field          | Type   | Description                     |
| -------------- | ------ | ------------------------------- |
| `Id`           | string | Payment request ID.             |
| `Status`       | string | Current payment request status. |
| `Amount`       | object | Payment amount value object.    |
| `CreationDate` | string | Creation timestamp.             |
| `DueDate`      | string | Due date timestamp.             |

```json theme={null}
{
  "Id": "ce0e3549-a83e-4cf6-bb5c-1d50a21d8af7",
  "Status": "Pending",
  "Amount": {
    "Value": 5000,
    "Currency": "USD"
  },
  "CreationDate": "2026-06-02T12:00:00Z",
  "DueDate": "2026-06-03T12:00:00Z"
}
```

Use this endpoint for direct status checks. Use payment status webhooks when you need asynchronous updates.
