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

# Get crypto wallet transaction by ID



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/wallets/crypto/transactions/{transactionId}
openapi: 3.1.0
info:
  title: FossaPay API
  description: >-
    FossaPay API for checkout wallets, master-wallet payouts, customer
    management, NGN wallets, crypto wallets, transfers, fees, banks, and
    webhooks.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api-production.fossapay.com
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /api/v1/wallets/crypto/transactions/{transactionId}:
    get:
      tags:
        - Crypto Wallets
      summary: Get crypto wallet transaction by ID
      operationId: CryptoWalletsController_findTransaction
      parameters:
        - name: transactionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Transaction retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CryptoWalletTransactionResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '404':
          description: Transaction not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    CryptoWalletTransactionResponse:
      type: object
      required:
        - status
        - statusCode
        - message
        - data
      properties:
        status:
          type: string
          enum:
            - success
            - error
        statusCode:
          type: integer
        message:
          type: string
        data:
          $ref: '#/components/schemas/CryptoWalletTransaction'
      additionalProperties: true
    ApiError:
      type: object
      properties:
        status:
          oneOf:
            - type: string
            - type: boolean
        statusCode:
          type: integer
        message:
          type: string
        error:
          type: string
        code:
          type: string
        errors:
          type: object
          additionalProperties: true
      additionalProperties: true
    CryptoWalletTransaction:
      type: object
      properties:
        id:
          type: string
        reference:
          type: string
        externalReference:
          type: string
        transactionType:
          type: string
        status:
          type: string
        tokenAmount:
          type: string
        tokenSymbol:
          type: string
        cryptoAssetStatus:
          type:
            - string
            - 'null'
          enum:
            - supported
            - unsupported
            - null
          description: >-
            Unsupported means the token was received on-chain but is not
            spendable through FossaPay.
        tokenAddress:
          type: string
        tokenDecimals:
          type: integer
        senderAddress:
          type: string
        recipientAddress:
          type: string
        transactionHash:
          type:
            - string
            - 'null'
        explorerLink:
          type:
            - string
            - 'null'
        blockchain:
          type: string
        sourceWalletAddress:
          type: string
        recipientWalletAddress:
          type: string
        sourceWalletId:
          type:
            - string
            - 'null'
        recipientWalletId:
          type:
            - string
            - 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      additionalProperties: true
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````