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

# Get international wire transfer details

> 
    Returns the necessary bank and beneficiary details for making an international wire transfer to Endaoment.
    This endpoint provides all the information needed to initiate an international wire transfer, including:
    - Beneficiary (Endaoment) details such as IBAN/account number and address
    - Receiving bank details including SWIFT/BIC code, routing number, bank name, and address

    No authentication is required as this information is publicly available.
    



## OpenAPI

````yaml https://api.endaoment.org/oas-json get /v1/donation-pledges/wire/details/international
openapi: 3.0.0
info:
  title: Endaoment API
  description: The official Endaoment API endpoints
  version: 0.0.1
  contact: {}
servers:
  - url: https://api.endaoment.org
    description: Production
security: []
tags: []
paths:
  /v1/donation-pledges/wire/details/international:
    get:
      tags:
        - Donation Pledges
      summary: Get international wire transfer details
      description: |2-

            Returns the necessary bank and beneficiary details for making an international wire transfer to Endaoment.
            This endpoint provides all the information needed to initiate an international wire transfer, including:
            - Beneficiary (Endaoment) details such as IBAN/account number and address
            - Receiving bank details including SWIFT/BIC code, routing number, bank name, and address

            No authentication is required as this information is publicly available.
            
      operationId: DonationPledgesController_getInternationalPledgeDetails
      parameters: []
      responses:
        '200':
          description: International wire transfer details successfully retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternationalTransferDetailsDto'
components:
  schemas:
    InternationalTransferDetailsDto:
      type: object
      properties:
        receivingBank:
          description: Details about the receiving bank
          allOf:
            - $ref: '#/components/schemas/InternationalReceivingBankDetailsDto'
        beneficiary:
          description: Details about the beneficiary (Endaoment)
          allOf:
            - $ref: '#/components/schemas/InternationalBeneficiaryDetailsDto'
      required:
        - receivingBank
        - beneficiary
    InternationalReceivingBankDetailsDto:
      type: object
      properties:
        swiftBicCode:
          type: string
          description: SWIFT/BIC code of the receiving bank
          example: CHFGUS44021
        abaRoutingNumber:
          type: string
          description: ABA routing number for the receiving bank
          example: '091311229'
        name:
          type: string
          description: Name of the receiving bank
          example: Choice Financial Group
        address:
          type: string
          description: Complete mailing address of the receiving bank
          example: 4501 23rd Avenue S Fargo, ND 58104, USA
      required:
        - swiftBicCode
        - abaRoutingNumber
        - name
        - address
    InternationalBeneficiaryDetailsDto:
      type: object
      properties:
        ibanAccountNumber:
          type: string
          description: IBAN or Account number for the wire transfer
          example: '202384704442'
        name:
          type: string
          description: Name of the beneficiary (Endaoment)
          example: Endaoment
        address:
          type: string
          description: Complete mailing address of the beneficiary
          example: 40 Bernal Heights Boulevard, San Francisco, CA 94110, USA
      required:
        - ibanAccountNumber
        - name
        - address

````