> ## 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

> Retrieve the details of an existing payment.

### Parameters

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

### Returns

Returns a payment if a valid identifier was provided, and returns an error otherwise.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "pt_KhzQL81YnE3B7K6MZb65gCJx",
    "worker": "wr_CgcLakmx4guire",
    "date": "2023-10-31",
    "amount": "12000.0",
    "currency": "USD",
    "status": "pending",
    "reference": "EFAK1ACH",
    "note": null,
    "period": {
      "starts": "2023-10-01",
      "ends": "2023-10-31"
    },
    "funding": {
      "amount": "12000.0",
      "currency": "USD"
    }
  }
  ```
</ResponseExample>
