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

# Get Beneficiary

> Retrieves a specific beneficiary by ID.

Retrieve the details of a specific saved beneficiary by ID.

## Example Request

```bash theme={null}
curl -X GET "https://api.rolla.xyz/api/v1/external/beneficiaries/c3d4e5f6-a7b8-9012-cdef-123456789012" \
  -H "X-API-Key: your_api_key_here"
```

## Example Response

```json theme={null}
{
  "status": 200,
  "success": true,
  "message": "Beneficiary retrieved successfully",
  "data": {
    "id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
    "currency": "NGN",
    "label": "Office rent",
    "account_name": "JOHN DOE",
    "account_number": "0123456789",
    "bank_name": "Access Bank",
    "bank_code": "000014",
    "withdrawal_method": null,
    "email": "john@example.com",
    "created_at": "2024-01-10T08:00:00.000Z",
    "updated_at": "2024-01-10T08:00:00.000Z"
  }
}
```


## OpenAPI

````yaml GET /beneficiaries/{beneficiaryId}
openapi: 3.1.0
info:
  title: Rolla Developer API
  description: >-
    API for programmatic transaction management on the Rolla platform. Monetary
    `amount` fields use the smallest unit of the referenced currency unless an
    endpoint says otherwise (e.g. NGN = kobo, USD = cents, where **100 cents =
    USD 1.00**).
  version: 1.0.0
servers:
  - url: https://api.rolla.xyz/api/v1/external
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /beneficiaries/{beneficiaryId}:
    get:
      summary: Get Beneficiary
      description: Retrieves a specific beneficiary by ID.
      operationId: getBeneficiary
      parameters:
        - name: beneficiaryId
          in: path
          required: true
          description: Beneficiary UUID
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Beneficiary retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Beneficiary retrieved successfully
                  data:
                    type: object
                    properties:
                      beneficiary:
                        $ref: '#/components/schemas/SavedBeneficiary'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Beneficiary not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SavedBeneficiary:
      type: object
      properties:
        id:
          type: string
          format: uuid
        currency:
          type: string
          example: NGN
        label:
          type: string
          example: Office rent
        account_name:
          type: string
          example: JOHN DOE
        account_number:
          type: string
          example: '0123456789'
        bank_name:
          type: string
          example: Access Bank
        bank_code:
          type: string
          example: '000014'
        bank_address:
          type: string
        swift_code:
          type: string
        email:
          type: string
          format: email
        contact_person:
          type: string
        beneficiary_address:
          type: string
        withdrawal_method:
          type: string
          enum:
            - domestic_wire
            - international_wire
            - ach
            - crypto_usdt
            - crypto_usdc
            - rolla_transfer
        routing_number:
          type: string
        wallet_address:
          type: string
        wallet_chain:
          type: string
        intermediary_bank_name:
          type: string
        intermediary_bank_routing_number:
          type: string
        recipient_business_id:
          type: string
          format: uuid
          description: >-
            Required for rolla_transfer. The UUID of the destination Rolla
            business.
        account_owner_type:
          type: string
          enum:
            - individual
            - business
          description: >-
            Whether the account is held by an individual or a business. Present
            for bank-account beneficiaries; null on legacy records that predate
            this field.
          example: business
        account_category:
          type: string
          enum:
            - checking
            - savings
          description: >-
            Whether a USD account is checking or savings. Present for USD
            beneficiaries; null on legacy records that predate this field.
          example: checking
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your Rolla API key

````