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

# Get fiat deposit account

> Returns a single fiat deposit account linked to a wallet.



## OpenAPI

````yaml get /v1/wallets/{wallet_id}/deposit_accounts/fiat/{deposit_account_id}
openapi: 3.1.0
info:
  version: 0.0.1
  title: Privy API
  description: >-
    REST API for Privy's wallet infrastructure — provision and manage wallets
    across EVM, Solana, and Bitcoin, authenticate users, sign transactions, and
    configure programmable policies and authorization intents.
  contact:
    name: Privy
    url: https://www.privy.io/
    email: support@privy.io
servers:
  - url: https://api.privy.io
security: []
tags:
  - name: Accounts
    description: Operations related to asset accounts
  - name: Aggregations
    description: Operations related to aggregations for tracking and measuring metrics
  - name: Apps
    description: Operations related to app settings and allowlist management
  - name: Cards
    description: Operations related to stablecoin-backed card issuing
  - name: Client Auth
    description: OAuth token exchange and device authorization operations
  - name: Condition Sets
    description: Operations related to condition sets
  - name: Embedded wallets
    description: Operations related to embedded wallet creation and authentication
  - name: Fiat
    description: Operations related to fiat onramping and offramping
  - name: Intents
    description: Operations related to authorization intents for wallet actions
  - name: Key quorums
    description: Operations related to key quorums
  - name: Kraken Embed
    description: >-
      Operations for Kraken Embed integration, including quotes, trades, user
      management, and portfolio operations
  - name: OAuth
    description: >-
      OAuth 2.0 endpoints including Device Authorization Grant (RFC 8628) for
      CLI and limited-input device login flows
  - name: Organizations
    description: Operations related to organizations
  - name: Policies
    description: Operations related to policies
  - name: Shared
    description: Common schemas shared across resources
  - name: Swaps
    description: Operations for swapping tokens within wallets
  - name: Teams
    description: Operations related to dashboard team management
  - name: Transactions
    description: Operations related to transactions
  - name: User signers
    description: Operations related to user signers
  - name: Users
    description: Operations related to users
  - name: Wallet Actions
    description: Operations related to wallet actions
  - name: Wallet Automations
    description: Operations related to wallet automations
  - name: Wallets
    description: Operations related to wallets
  - name: Webhooks
    description: >-
      Webhook events that Privy sends to your configured endpoint when specific
      actions occur in your app
  - name: Yield
    description: >-
      Operations for depositing and withdrawing funds from ERC-4626 yield vaults
      (Morpho, Aave)
paths:
  /v1/wallets/{wallet_id}/deposit_accounts/fiat/{deposit_account_id}:
    get:
      tags:
        - Fiat
      summary: Get a fiat deposit account
      description: Returns a single fiat deposit account linked to a wallet.
      operationId: getFiatDepositAccount
      parameters:
        - schema:
            type: string
            description: The ID of the wallet.
          required: true
          name: wallet_id
          in: path
        - schema:
            type: string
            description: The ID of the fiat deposit account.
          required: true
          name: deposit_account_id
          in: path
        - schema:
            type: string
            description: ID of your Privy app.
          required: true
          name: privy-app-id
          in: header
      responses:
        '200':
          description: The fiat deposit account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FiatDepositAccountResponse'
      security:
        - appSecretAuth: []
components:
  schemas:
    FiatDepositAccountResponse:
      type: object
      properties:
        fiat_deposit_account:
          $ref: '#/components/schemas/FiatDepositAccount'
      required:
        - fiat_deposit_account
      description: Response containing a single fiat deposit account.
      title: FiatDepositAccountResponse
      x-stainless-model: fiat.fiat_deposit_account_response
    FiatDepositAccount:
      oneOf:
        - $ref: '#/components/schemas/BridgeFiatDepositAccount'
      discriminator:
        propertyName: provider
        mapping:
          bridge:
            $ref: '#/components/schemas/BridgeFiatDepositAccount'
      description: A fiat deposit account linked to a wallet. The shape varies by provider.
      title: FiatDepositAccount
      x-stainless-model: fiat.fiat_deposit_account
    BridgeFiatDepositAccount:
      type: object
      properties:
        id:
          type: string
        wallet_id:
          type: string
        provider:
          type: string
          enum:
            - bridge
          description: 'Discriminator: the fiat deposit account is orchestrated via Bridge.'
        environment:
          $ref: '#/components/schemas/Environment'
        status:
          $ref: '#/components/schemas/FiatDepositAccountStatus'
        source:
          $ref: '#/components/schemas/FiatDepositAccountSource'
        destination:
          $ref: '#/components/schemas/FiatDepositAccountDestination'
        deposit_instructions:
          anyOf:
            - $ref: '#/components/schemas/FiatDepositInstructions'
            - type: 'null'
        created_at:
          type: string
      required:
        - id
        - wallet_id
        - provider
        - environment
        - status
        - source
        - destination
        - deposit_instructions
        - created_at
      description: A Bridge fiat deposit account linked to a wallet.
      title: BridgeFiatDepositAccount
      x-stainless-model: fiat.bridge_fiat_deposit_account
    Environment:
      type: string
      enum:
        - sandbox
        - production
      description: The Privy API environment.
      title: Environment
      example: sandbox
      x-stainless-model: shared.environment
    FiatDepositAccountStatus:
      type: string
      enum:
        - activated
        - deactivated
      description: Activation status of a fiat deposit account.
      title: FiatDepositAccountStatus
      x-stainless-model: fiat.fiat_deposit_account_status
    FiatDepositAccountSource:
      type: object
      properties:
        currency:
          type: string
        payment_rails:
          type: array
          items:
            type: string
      required:
        - currency
        - payment_rails
      additionalProperties: false
      description: >-
        The source fiat currency and available payment rails for a fiat deposit
        account.
      title: FiatDepositAccountSource
      x-stainless-model: fiat.fiat_deposit_account_source
    FiatDepositAccountDestination:
      type: object
      properties:
        asset:
          type: string
          description: Destination crypto asset (e.g. "usdc").
        chain:
          type: string
          description: Destination chain (e.g. "base", "tempo").
      required:
        - asset
        - chain
      additionalProperties: false
      description: The destination crypto asset and chain for a fiat deposit account.
      title: FiatDepositAccountDestination
      x-stainless-model: fiat.fiat_deposit_account_destination
    FiatDepositInstructions:
      type: object
      properties:
        bank_name:
          type: string
        bank_address:
          type: string
        bank_account_number:
          type: string
        bank_routing_number:
          type: string
        bank_beneficiary_name:
          type: string
        bank_beneficiary_address:
          type: string
        iban:
          type: string
        bic:
          type: string
        clabe:
          type: string
        br_code:
          type: string
        account_number:
          type: string
        sort_code:
          type: string
        bre_b_key:
          type: string
        account_holder_name:
          type: string
        deposit_message:
          type: string
        payment_rails:
          type: array
          items:
            type: string
      description: >-
        Bank or payment deposit instructions for a fiat deposit account. Shape
        varies by source currency.
      title: FiatDepositInstructions
      x-stainless-model: fiat.fiat_deposit_instructions
  securitySchemes:
    appSecretAuth:
      type: http
      scheme: basic
      description: >-
        Basic Auth header with your app ID as the username and your app secret
        as the password.

````