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

# Export Beneficiaries

> The whole address book as an RFC-4180 CSV download: Beneficiary ID, name, type, and compliance status — the IDs a Business needs to seed a Bulk Payout CSV, and no further PII. Results are scoped to the caller's Business and environment.



## OpenAPI

````yaml GET /v1/beneficiaries/export
openapi: 3.0.0
info:
  title: Cleff API
  description: >-
    Payout orchestration platform. All endpoints under /v1/ require an API key
    in the Authorization header (Bearer ck_<env>_<id>_<secret>).
  version: 0.0.1
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/beneficiaries/export:
    get:
      tags:
        - Beneficiaries
      summary: Export Beneficiaries for the current Business and environment as CSV
      description: >-
        The whole address book as an RFC-4180 CSV download: Beneficiary ID,
        name, type, and compliance status — the IDs a Business needs to seed a
        Bulk Payout CSV, and no further PII. Results are scoped to the caller's
        Business and environment.
      operationId: BeneficiariesController_export
      parameters: []
      responses:
        '200':
          description: ''
          content:
            text/csv:
              schema:
                type: string
                format: binary
        '401':
          description: Missing or invalid credentials
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      scheme: bearer
      bearerFormat: ck_<env>_<id>_<secret>
      type: http
      description: >-
        Cleff API key issued to a Business that self-registers via POST
        /v1/registration

````