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

# Read one organization wallet by id



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/wallets/{id}
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/wallets/{id}:
    get:
      tags:
        - Organizations - Wallets
      summary: Read one organization wallet by id
      operationId: OrganizationWalletsController_getWallet
      parameters:
        - name: orgId
          required: true
          in: path
          schema:
            type: string
            example: org-abc123
        - name: id
          required: true
          in: path
          schema:
            example: orw-abc123
            type: string
      responses:
        '200':
          description: 'Envelope `{ success, wallet: OrganizationWalletResponseDto }`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationWalletResponseEnvelopeDto'
        '404':
          description: Wallet not found
      security:
        - Authorization: []
components:
  schemas:
    OrganizationWalletResponseEnvelopeDto:
      type: object
      properties:
        success:
          type: boolean
          example: true
        wallet:
          $ref: '#/components/schemas/OrganizationWalletResponseDto'
      required:
        - success
        - wallet
    OrganizationWalletResponseDto:
      type: object
      properties:
        id:
          type: string
          example: orw-3fa8…afa6
        orgId:
          type: string
          example: org-abc123
        walletIndex:
          type: number
          description: Per-org slot (0-based)
          example: 0
        address:
          type: string
          description: The on-chain address that holds the stablecoins
          example: 0x…
        walletMode:
          type: string
          enum:
            - sca
            - eip7702
          example: sca
        label:
          type: string
          example: Treasury
          nullable: true
        status:
          type: string
          enum:
            - Active
            - Revoked
          example: Active
        createdAt:
          format: date-time
          type: string
          example: '2026-07-13T10:00:00.000Z'
      required:
        - id
        - orgId
        - walletIndex
        - address
        - walletMode
        - status
        - createdAt
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Read one budget by id](/docs/api-reference/groups/read-one-budget-by-id.md)
- [Read a wallet's USDC + EURC balances on the deployment's chain](/docs/api-reference/organizations--wallets/read-a-wallets-usdc-+-eurc-balances-on-the-deployments-chain.md)
- [Organization Wallets](/docs/solutions/organizations/wallets.md)
- [Programmatic & Agentic Access](/docs/solutions/organizations/programmatic-access.md)
- [Rename an organization wallet](/docs/api-reference/organizations--wallets/rename-an-organization-wallet.md)
