> ## 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 current organization identity

> Returns the identity of the organization associated with the current API key.
Useful for verifying which organization your API key belongs to.




## OpenAPI

````yaml /openapi.yaml get /ramp/me
openapi: 3.1.0
info:
  title: FX API
  version: 1.0.0
  description: >
    API for managing FX operations including onboarding, quotes, orders, and
    customer management.

    This API provides endpoints for managing customers, bank accounts, crypto
    wallets, orders, and webhooks.
servers:
  - url: https://api.etherfuse.com
    description: Production API
  - url: https://api.sand.etherfuse.com
    description: Sandbox API (for testing)
security: []
tags:
  - name: Lookup
    description: Public endpoints for looking up stablebond and exchange rate data
  - name: Assets
    description: Get available assets for ramping
  - name: Onboarding
    description: Customer onboarding and KYC
  - name: Bank Accounts
    description: Manage customer bank accounts
  - name: Agreements
    description: Handle customer agreements and consents
  - name: Quotes
    description: Get quotes for conversions
  - name: Orders
    description: Create and manage orders
  - name: Swaps
    description: Create and manage swaps
  - name: Customers
    description: Manage customers
  - name: Crypto Wallets
    description: Manage crypto wallets
  - name: Webhooks
    description: Manage webhook subscriptions
  - name: Organizations
    description: Manage organizations and child organizations
paths:
  /ramp/me:
    get:
      tags:
        - Lookup
      summary: Get current organization identity
      description: >
        Returns the identity of the organization associated with the current API
        key.

        Useful for verifying which organization your API key belongs to.
      responses:
        '200':
          description: Organization identity
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: Organization ID
                  displayName:
                    type: string
                    description: Display name of the organization
                  approvedAt:
                    type: string
                    format: date-time
                    nullable: true
                    description: >-
                      Timestamp when the organization was approved (KYB
                      complete)
                  partnerFeeDefaultBps:
                    type: integer
                    minimum: 0
                    maximum: 500
                    description: >-
                      Default partner fee in basis points applied to quotes for
                      this organization. 0 means no partner fee.
              example:
                id: 123e4567-e89b-12d3-a456-426614174000
                displayName: Acme Corp
                approvedAt: '2024-06-15T10:00:00Z'
                partnerFeeDefaultBps: 0
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key for authentication. Pass the key directly (e.g., `Authorization:
        your-api-key`). Do not use a `Bearer` prefix.

````