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

# Get Virtual Card Transaction by ID

> Get Virtual Card Transaction for a specified Transaction ID



## OpenAPI

````yaml GET /cards/{card_id}/transactions/{transaction_id}
openapi: 3.1.0
info:
  title: Sturdy Technologies API
  description: API documentation for Sturdy Technologies Service
  contact: {}
  version: '1.0'
servers:
  - url: https://sandbox.sturdytechnologies.com/v3
    description: Sandbox server
security: []
paths:
  /cards/{card_id}/transactions/{transaction_id}:
    get:
      tags:
        - Cards
      summary: Get Virtual Card Transaction by ID
      description: Get Virtual Card Transaction for a specified Transaction ID
      operationId: getCardTransactionById
      parameters:
        - name: card_id
          in: path
          description: Card Identifier
          required: true
          schema:
            type: string
        - name: transaction_id
          in: path
          description: Transaction Identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardTransactionResp'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResp'
      security:
        - BearerAuth: []
components:
  schemas:
    CardTransactionResp:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CardTransactionData'
        message:
          type: string
        success:
          type: boolean
    ErrorResp:
      type: object
      properties:
        message:
          type: string
          example: Invalid request
        success:
          type: boolean
          example: false
    CardTransactionData:
      type: object
      properties:
        amount:
          type: number
          example: 100.5
        card_id:
          type: string
          example: card_12345
        currency:
          type: string
          example: USD
        description:
          type: string
          example: Payment at Store
        merchant_name:
          type: string
          example: Store Inc.
        transaction_date:
          type: string
          example: '2023-10-01T12:34:56Z'
        transaction_id:
          type: string
          example: txn_12345
        transaction_status:
          type: string
          enum:
            - processing
            - successful
            - failed
        transaction_type:
          type: string
          enum:
            - debit
            - credit

````