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

# Get One Recipient

> Retrieve the details of a single recipient by their ID. All withdrawal requests require approved KYC.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/ramp/{subaccountId}/banking/recipients/{recipientId}
openapi: 3.0.0
info:
  title: Bullring Finance API
  description: >-
    The Bullring Finance API allows you to build powerful cross-border payment
    solutions.
  version: 1.0.0
servers:
  - url: https://api.bullring.finance
    description: Production Server
  - url: https://staging-api.bullring.finance
    description: Sandbox Server
security:
  - x-api-key: []
tags:
  - name: Subaccounts
    description: Operations related to user subaccounts.
  - name: Verification
    description: Endpoints for subaccount verification, including KYC and KYB processes.
  - name: Balances
    description: Endpoints for retrieving account balances.
  - name: Deposits
    description: Endpoints for handling deposits into subaccounts.
  - name: Recipients
    description: Manage payment recipients for withdrawals.
  - name: Withdrawals
    description: Endpoints for handling withdrawals from subaccounts.
  - name: Conversions
    description: Endpoints for currency conversions.
  - name: Rates
    description: Endpoints for currency conversion rates.
  - name: Fees
    description: Endpoints for checking transaction fees.
  - name: Offramp
    description: Endpoints for handling offramp operations.
  - name: Onramp
    description: Endpoints for handling onramp operations.
paths:
  /v1/ramp/{subaccountId}/banking/recipients/{recipientId}:
    get:
      tags:
        - Recipients
      summary: Get One Recipient
      description: >-
        Retrieve the details of a single recipient by their ID. All withdrawal
        requests require approved KYC.
      parameters:
        - name: subaccountId
          in: path
          schema:
            type: string
          required: true
        - name: recipientId
          in: path
          schema:
            type: string
            example: 27c44186-5cc7-4c74-b7c7-ab16b762f260
          required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  account_owner_name:
                    type: string
                  bank_name:
                    type: string
                  active:
                    type: boolean
                  currency:
                    type: string
                  is_verified:
                    type: boolean
                  account_id:
                    type: string
              example:
                id: 27c44186-5cc7-4c74-b7c7-ab16b762f260
                account_owner_name: Hugo Gonzalez
                active: true
                currency: BRL
                is_verified: true
                account_id: 667.136.083-96
                payment_rail: pix
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
              example:
                statusCode: 404
                timestamp: '2025-11-20T21:53:34.527Z'
                error: Error
                message: Bank account not found
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````