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

# Get organization

> Returns the identity of the organization associated with the current API key. Use the response `id` as `customerId` on `POST /ramp/quote` when you transact as your own org.



## OpenAPI

````yaml /openapi.json get /ramp/me
openapi: 3.1.0
info:
  title: Etherfuse FX API
  description: Partner-facing ramp API for onramps, offramps, swaps, and KYC.
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sand.etherfuse.com
    description: Sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Authentication
    description: >-
      Partner JWT authentication — exchange a JWT for an access token, or launch
      a user into the app.
  - name: Lookup
    description: >-
      Public reference data: exchange rates, stablebonds, bond costs, country
      codes.
  - name: Assets
    description: Rampable stablecoins and stablebonds available per blockchain.
  - name: Onboarding
    description: Hosted and programmatic customer onboarding.
  - name: Agreements
    description: Legal agreement acceptance during onboarding.
  - name: Bank Accounts
    description: Register and retrieve customer bank accounts.
  - name: Quotes
    description: Price quotes for onramps, offramps, and swaps.
  - name: Orders
    description: Create, track, and manage ramp orders.
  - name: Swaps
    description: Crypto-to-crypto swaps.
  - name: Sponsored
    description: Token approvals for sponsored (gasless) offramps.
  - name: Customers
    description: Customer (child-organization) records.
  - name: Wallets
    description: Register and manage customer wallets.
  - name: KYC
    description: Submit and check customer KYC status.
  - name: Webhooks
    description: Event notification subscriptions.
  - name: Organizations
    description: Organization identity, child orgs, and partner fees.
paths:
  /ramp/me:
    get:
      tags:
        - Organizations
      summary: Get organization
      description: >-
        Returns the identity of the organization associated with the current API
        key. Use the response `id` as `customerId` on `POST /ramp/quote` when
        you transact as your own org.
      operationId: get_me
      responses:
        '200':
          description: The authenticated organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
        '404':
          description: Organization not found
components:
  schemas:
    MeResponse:
      type: object
      required:
        - id
        - displayName
        - partnerFeeDefaultBps
      properties:
        approvedAt:
          type:
            - string
            - 'null'
        displayName:
          type: string
        id:
          type: string
          format: uuid
        partnerFeeDefaultBps:
          type: integer
          format: int32
      example:
        approvedAt: '2026-04-15T12:00:00Z'
        displayName: Acme Inc
        id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        partnerFeeDefaultBps: 100
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````