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

# Retrieve Recipient

> Retrieve detailed information about a specific payment recipient by its ID.

Retrieve detailed information about a specific payment recipient by its ID.

## Overview

This endpoint returns comprehensive details about a single recipient, including all account information, limits, identification, and payment details.

## Path Parameters

<ParamField path="id" type="string" required>
  Recipient UUID
</ParamField>

## Response

<ResponseField name="data" type="object">
  Complete recipient object including:

  * `id`: Recipient UUID
  * `merchant_id`: Your merchant ID
  * `account_number`: Account number
  * `account_name`: Account holder name
  * `account_type`: Account type (individual/business)
  * `is_internal_account`: Whether it's an internal Pooler account
  * `account_currency`: Currency code
  * `account_bank_name`: Bank name
  * `account_bank_code`: Bank code
  * `account_country_code`: Country code
  * `account_country`: Country name
  * `identification`: Identification object with type, number, and image
  * `limit`: Payment limit
  * `payment_details`: Payment details object
  * `created_at`: Creation timestamp
  * `updated_at`: Last update timestamp
</ResponseField>


## OpenAPI

````yaml GET /payments/recipients/{id}
openapi: 3.0.0
info:
  title: Pooler Developer API
  description: >-
    Comprehensive API documentation for Pooler payment and financial services
    platform
  version: 1.0.0
servers:
  - url: https://api.usepooler.com
    description: Production server
  - url: https://sandbox.usepooler.com
    description: Sandbox server
security:
  - bearerAuth: []
paths:
  /payments/recipients/{id}:
    get:
      tags:
        - Recipients
      summary: Retrieve Recipient
      description: >-
        Retrieve detailed information about a specific payment recipient by its
        ID.
      operationId: retrieveRecipient
      parameters:
        - name: id
          in: path
          required: true
          description: Recipient ID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Recipient retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecipientResponse'
components:
  schemas:
    RecipientResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        stan:
          type: string
          format: uuid
        data:
          $ref: '#/components/schemas/Recipient'
    Recipient:
      type: object
      properties:
        id:
          type: string
          format: uuid
        merchant_id:
          type: string
          format: uuid
        account_number:
          type: string
        account_name:
          type: string
        account_type:
          type: string
        is_internal_account:
          type: boolean
        account_currency:
          type: string
        account_bank_name:
          type: string
        account_bank_code:
          type: string
        account_country_code:
          type: string
        account_country:
          type: string
        identification:
          type: object
        limit:
          type: string
        payment_details:
          type: object
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token authentication. Include your API key in the Authorization
        header as: Bearer {your_api_key}

````