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

# List Payins

> Retrieve a paginated list of incoming payments

## Path Parameters

<ParamField path="account_id" type="string" required>
  The account's external ID (starts with `acc_`)
</ParamField>

## Query Parameters

<ParamField query="status" type="string">
  Filter by payin status (e.g., `pending`, `processing`, `completed`, `failed`)
</ParamField>

<ParamField query="currency" type="string">
  Filter by ISO 4217 currency code (e.g., USD, EUR, GBP)
</ParamField>

<ParamField query="payment_method" type="string">
  Filter by payment method (e.g., bank\_transfer, card, crypto)
</ParamField>

<ParamField query="start_date" type="string">
  Filter payins created on or after this date (ISO 8601 format)
</ParamField>

<ParamField query="end_date" type="string">
  Filter payins created before this date (ISO 8601 format)
</ParamField>

<ParamField query="page" type="integer" default="1">
  Page number (minimum 1)
</ParamField>

<ParamField query="size" type="integer" default="10">
  Items per page (1-100)
</ParamField>

## Response

<ResponseField name="items" type="array">
  Array of payin objects

  <Expandable title="Payin Fields">
    <ResponseField name="id" type="string">
      Payin identifier (starts with `pi_`)
    </ResponseField>

    <ResponseField name="object" type="string">
      Always returns `"payin"`
    </ResponseField>

    <ResponseField name="account_id" type="string">
      Account ID
    </ResponseField>

    <ResponseField name="amount" type="string">
      Payin amount (decimal)
    </ResponseField>

    <ResponseField name="currency" type="string">
      Currency code
    </ResponseField>

    <ResponseField name="status" type="string">
      Payin status
    </ResponseField>

    <ResponseField name="initiated_at" type="string">
      When payin was initiated
    </ResponseField>

    <ResponseField name="created" type="string">
      ISO 8601 timestamp
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="page" type="integer">
  Current page number
</ResponseField>

<ResponseField name="size" type="integer">
  Items per page
</ResponseField>

<ResponseField name="total" type="integer">
  Total number of items
</ResponseField>

<ResponseField name="pages" type="integer">
  Total number of pages
</ResponseField>

## Response Example

```json theme={null}
{
  "items": [
    {
      "id": "pi_uh0p51dqek7qes5e52a6x7of",
      "object": "payin",
      "account_id": "acct_ka44qsvpo8q3wtzuwfqf0h6u",
      "amount": "1000.00",
      "currency": "USD",
      "network": null,
      "amount_in_usd": "1000.00",
      "status": "completed",
      "provider_reference_id": "trace_123",
      "initiated_at": "2024-01-15T10:00:00Z",
      "completed_at": "2024-01-15T10:05:00Z",
      "failed_at": null,
      "failed_reason": null,
      "created": "2024-01-15T10:00:00Z",
      "updated": "2024-01-15T10:05:00Z"
    }
  ],
  "page": 1,
  "size": 10,
  "total": 1,
  "pages": 1
}
```
