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

# Get crypto deposit

> Retrieves crypto deposit details including asset metadata.



## OpenAPI

````yaml /api-reference/openapi.json get /crypto-deposits/{id}
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sandbox.api.reap.global
    description: Sandbox
  - url: https://prod.api.reap.global
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
paths:
  /crypto-deposits/{id}:
    get:
      tags:
        - Crypto Deposits
      summary: Get crypto deposit
      description: Retrieves crypto deposit details including asset metadata.
      operationId: get_crypto-deposits
      parameters:
        - name: id
          in: path
          required: true
          schema:
            description: Crypto deposit ID
            type: string
            format: uuid
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Crypto deposit resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CryptoDeposit'
        '404':
          description: Deposit not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: CRYPTO_DEPOSIT_NOT_FOUND
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: DepositNotFoundError
components:
  schemas:
    CryptoDeposit:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique deposit identifier
        accountId:
          type: string
          format: uuid
          description: Account that received the deposit
        chainId:
          type: string
          enum:
            - ETHEREUM_MAINNET
            - ETHEREUM_SEPOLIA
            - BASE_MAINNET
            - BASE_SEPOLIA
            - ARBITRUM_ONE_MAINNET
            - ARBITRUM_ONE_SEPOLIA
            - POLYGON_MAINNET
            - POLYGON_AMOY
            - SOLANA_MAINNET
            - SOLANA_DEVNET
          description: Blockchain network identifier
          example: ETHEREUM_MAINNET
        transactionId:
          type: string
          examples:
            - '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef'
          description: On-chain transaction hash/signature
        status:
          type: string
          enum:
            - PENDING
            - CONFIRMED
            - APPROVED
            - REJECTED
          description: Current deposit status
          example: PENDING
        rejectionReason:
          anyOf:
            - type: string
              enum:
                - TRANSACTION_FAILED
                - ASSET_NOT_ACCEPTED
                - KYT_CHECK_FAILED
                - AMOUNT_TOO_SMALL
              description: |-
                - `TRANSACTION_FAILED`: On-chain transaction failed or reverted
                - `ASSET_NOT_ACCEPTED`: Asset is not accepted as collateral
                - `KYT_CHECK_FAILED`: Transaction flagged by compliance checks
                - `AMOUNT_TOO_SMALL`: Amount below minimum threshold (internal)
              example: TRANSACTION_FAILED
            - type: 'null'
          description: Reason for rejection (only when status is `REJECTED`)
        amount:
          type: string
          examples:
            - '1000.0'
            - '0.999999999999999999'
          description: Amount with decimals applied (string for full precision)
        senderAddress:
          type: string
          examples:
            - '0x742d35Cc6634C0532925a3b844Bc9e7595f8fA21'
          description: Address that sent the deposit
        occurredAt:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - '2024-01-15T10:30:00Z'
          description: ISO 8601 timestamp of on-chain transfer
        createdAt:
          type: string
          examples:
            - '2024-01-15T10:30:00Z'
          description: ISO 8601 timestamp of creation
        updatedAt:
          type: string
          examples:
            - '2024-01-15T10:35:00Z'
          description: ISO 8601 timestamp of last update
        asset:
          $ref: '#/components/schemas/AssetInfo'
      required:
        - id
        - accountId
        - chainId
        - transactionId
        - status
        - rejectionReason
        - amount
        - senderAddress
        - occurredAt
        - createdAt
        - updatedAt
        - asset
    AssetInfo:
      type: object
      properties:
        symbol:
          type: string
          examples:
            - USDC
            - USDT
            - ETH
          description: Asset symbol
        name:
          anyOf:
            - type: string
            - type: 'null'
          examples:
            - USD Coin
            - Ethereum
          description: Full asset name
        decimals:
          type: integer
          minimum: 0
          maximum: 9007199254740991
          examples:
            - 6
            - 18
          description: Number of decimal places
        logoUri:
          anyOf:
            - type: string
            - type: 'null'
          description: URI to asset logo image
      required:
        - symbol
        - name
        - decimals
        - logoUri
      description: Asset metadata
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````