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

# Get a payment request

> Retrieve the details of an existing payment request.

### Parameters

<ParamField type="string" path="id" initialValue="ptr_LcjXBMrTTwS1GreTcqWSvGhW" required>
  The ID of a payment request object.
</ParamField>

### Returns

Return the [Payment Request](/reference/payment-requests/object) object.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "ptr_ogdEjSnSqNYxtW1sd3pC3hFX",
    "worker": "wr_anqRSFcK36ie85",
    "amount": "1200.00",
    "currency": "EUR",
    "status": "pending",
    "reference": "EV1S3GDM",
    "note": "Payment for July",
    "period": {
      "starts": "2023-07-01",
      "ends": "2023-07-31"
    },
    "documents": [],
    "approvals": [],
    "payment": null
  }
  ```
</ResponseExample>
