> For the complete documentation index, see [llms.txt](https://developers.finove.com.br/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.finove.com.br/embed-in-website/payments/get-payment.md).

# Get Payment

Fetch a single payment

## Fetch a single payment

<mark style="color:blue;">`GET`</mark> `https://api.finove.com.br/api/v1/merchant/payments/:id`

List payments that are being processed or are already completed, depending on the status parameter.

#### Path Parameters

| Name                               | Type   | Description   |
| ---------------------------------- | ------ | ------------- |
| <mark style="color:red;">\*</mark> | String | ID of payment |

#### Headers

| Name          | Type   | Description                                                                                              |
| ------------- | ------ | -------------------------------------------------------------------------------------------------------- |
| Authorization | string | Access token received from Authentication API. Needs to be on format "**Bearer \<YOUR\_ACCESS\_TOKEN>**" |

{% tabs %}
{% tab title="200 Success" %}

```
{
   id: "c34a4345-57e9-43a1-b308-92fe21767023",
   status: "completed",
   currency: "BRL",
   orderId: "4c6b62f3-1f08-4710-a7f1-c8c88b5f8f09",
   orderDescription: "Some description about the order",
   meta: {}, // Set in payment request
   senderId: "9cbd9fee-3142-4746-b921-37898867f9b3",
   sender: {
   id: "e65b85fc-faf9-48a7-9336-fc18883a626c",
      legalName: "name of the customer",
      cnpj: "16954540000144",
   },
   amount: 267054,
   merchantSubsidyAmount: 10059,
   merchantSubsidyRate: 0.025,
   merchantTotalAmount: 10059,
   paymentType: "bank_transfer",
   invoiceStatus: "submitted",
   monthsUntilFirstPayment: 1,
   firstInstallmendDate: "2019-05-23T12:43:41.758Z",
   paymentMeta: {
      lenderPaidAt: "2019-05-24T12:43:41.758Z"
   },
   merchantRecourseRate: 0.02,
   createdAt: "2019-05-23T12:43:41.758Z",
   updatedAt: "2019-05-23T13:43:41.758Z"
}
```

{% endtab %}
{% endtabs %}
